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.
unable to delete file with wildcard
Name: Ravi_varma Date: June 10, 2008 at 13:34:23 Pacific OS: xp CPU/Ram: amd Product: 20000
Comment:
Hi All,
I am trying to delete files in a ftp box.file will be present in the below format in the ftp box. abc_200080304122334.txt abc_20008030313544.txt
if i try to delete with wild card like below the files are not getting deleted
delete abc_2000803041*.txt dele abc_200080303*.txt
but i i give the full name with out using wild cards the files are getting deleted.
i need to delete all the files based on the wild card,which will run after we get the files from ftp server to our system.
Summary: Hi I am trying to get a batch file to delete files which has dates older than 7 days so far I have @ECHO OFF CLS FOR /R C:\User_share %%FILE IN (*.*) DO ( ECHO starting if IF(0 == (ISDATE %%~zFILE bef...
Summary: Greetings All! The following MS-DOS code will delete any specified files, in specified location, and older then a specified date. "Delete files by older-then-date". Quick pseudo example: Delete *.t...
Summary: I need had rename files with the date and then move them to a particular foder. I have done the renaming and moving thing successfully but now i also need to delete files in tht particular folder bas...