Computing.Net > Forums > Programming > Script to move/delete files

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Script to move/delete files

Reply to Message Icon

Name: sreg73
Date: January 8, 2007 at 07:45:20 Pacific
OS: Win 2003 Server
CPU/Ram: 3.2 GHZ / 3.5 GB
Product: HP DL 380
Comment:

I am trying to write a batch script that moves all files from one network folder to another network folder. On the destination folder, I need to delete any files older than 3 days from after the move occurred. So if they files were moved on 1/8/07, they need to be deleted after 1/11/07. Here's what I have so far:

@echo on&setlocal ENABLEDELAYEDEXPANSION
echo %*|fs /c:"Database backed up:"||exit 1
move x:\*.* y:\

The move is not working with this script, and I didn't know how to acquire the date stamp for the deletion. Thanks!!



Sponsored Link
Ads by Google

Response Number 1
Name: Mechanix2Go
Date: January 9, 2007 at 05:19:20 Pacific
Reply:

What is this line trying to do and what is fs?


echo %*|fs /c:"Database backed up:"||exit 1

Basically 'deleting older than' entails 'date math' and if you cruise through the last few hundred msgs, you'll see that no one has had much luck.



=====================================
If at first you don't succeed, you're about average.

M2



0

Response Number 2
Name: sreg73
Date: January 10, 2007 at 05:06:59 Pacific
Reply:

The line
echo %*|fs /c:"Database backed up:"||exit 1
just basically echos out some information about the database being backed up. If I could just get the move part working, that would be fine. I was trying to use a For statement and I came up with something like this:
for %%B in (X:\ABC\*.BAK) do (move %%B Y:\USA Backup)
This line works in a live DOS session, but does not work when I run the script. Thanks!


0

Response Number 3
Name: Mechanix2Go
Date: January 10, 2007 at 05:29:02 Pacific
Reply:

I still don't get what's up with fs and exit.


=====================================
If at first you don't succeed, you're about average.

M2



0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Programming Forum Home


Sponsored links

Ads by Google


Results for: Script to move/delete files

Unix script to sort .dat files www.computing.net/answers/programming/unix-script-to-sort-dat-files/18149.html

Need to move files i cannot see www.computing.net/answers/programming/need-to-move-files-i-cannot-see/12852.html

Moving files from one folder to diffrent www.computing.net/answers/programming/moving-files-from-one-folder-to-diffrent/18858.html