Changed filepath script to output to csv instead of txt

This commit is contained in:
2015-08-04 10:10:58 -04:00
parent f18fc308f9
commit 192ce76dc5
6 changed files with 46 additions and 7 deletions

View File

@@ -1,15 +1,29 @@
@echo off
echo This script will scan all local drives for any paths bigger than 255 characters.
echo It will leave a .txt on your desktop.
echo It will leave a .csv on your desktop.
echo .
echo .
pause
cls
call ruby\bin\irb.bat source\filepath.rb
xcopy "files.txt" "%userprofile%\Desktop"
xcopy "files.csv" "%userprofile%\Desktop"
cls
echo The script has finished....
echo You can find files.txt on your desktop.
echo You can find files.csv on your desktop.
echo .
pause
exit