Summary: Hello, I am looking for a script that will delete any file in a folder and it's sub-folders that are 100k or smaller. Thanks in advance for any assist...
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 ol...
Summary: I have been using a batch file to delete .zip files in a directory that are older than 2 days old. It has been working very well. However, I would lik...
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 (*.*) ...
Summary: Hi People, Please help me with the DOS code to delete files older than 15 days. i will schedule the batch file then. We are doing this to delete older...
Summary: 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.t...
Summary: Hi , I have to delete files from a network drive..(which is accessible from my system)via a batch script, that are older than 3 days...the file name i...
Summary: Can any script gurus tell me why the following VBS script doesn't run at all on my XP box? It's supposed to echo all files newer than the specified d...
Summary: I have share on a server in which i have files being saved to. I need to purge this folder every so often of files that are no older then 2 days. I ha...
Summary: Relates to an ealier post with title: Batch File deleting files by date? HAD TO CHANGE FOLLOWING TO GET WORKING 1. In Line: for /f "tokens=2" %%i in (...
Summary: I'm needing help with a batch file to check the date of files in a particular directory and delete the files older than 90 days. Is there a way to do ...
Summary: Hi, I am new to batch scripting and need some help from all your genius' out there. I want to write a script that will delete files older than 14 days...
Summary: I had found a script, I believe from Chrispie and Dtech10, which was working fine but not anymore. It would delete files older than X days old. We did...
Summary: I have a script that I'm trying to use to delete files off a server. I have a .txt file with the location of the files needing deleting. How do I ge...
Summary: Anyone knows how to create a batch file to clean up a folder based on a certain number of days? I want to delete files older than 7 days but I don't k...
Summary: is it possible to track file save date? the date when file was saved in a folder and subfolder. I want to delete files saved older than 30 days, refer...
Summary: I need to delete files from the C:\Company\Temp directory that are older than 120 days. I have to perform this on about 125 PCs. The VBScript keeps bo...
Summary: Hello, I’m trying to make a bat file that will delete all files in the My Pictures and the My Music folders for a particular user. This should work...
Summary: Hi, I'm trying to have a .bat file set up as a scheduled task to upload files via ftp and then, if successful, delete the files locally. I have the a...
Summary: I am looking for a VB Script that would rename several Acrobat files based on a reference list (txt, csv, ect). The acrobat files are created with tim...
Summary: I am writing a script to backup files to a USB drive. I would like to delete the old backup folder and all its files then rebuild and populate the fol...
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...
Summary: Hi Where is this section of code. rem Get Date Number : DayNo %1 for /f "tokens=1-3 delims=/- " %%a in ("%1") do ( set /a mm=%%a set /a dd=%%b set /a ...