把一下内容复制成一个BAT文件。。放到你的ROM文件夹里面。。就可以哗啦啦的出来了
---------------------------------------------------------------------------------------------------------------------
echo Directory and sub-directory file listing dump by RenegadeMinds.com.
echo Visit
http://Renegademinds.com for more Windows tips and tricks
echo and free software applications.
echo ==================================================================
echo ==================================================================
echo Save this file as getDirList.bat in your SendTo directory.
echo SendTo is under Documents and Settings in each user's directory.
echo Right-click on any directory in Windows Explorer and choose
echo Send To - getDirList.bat
echo ==================================================================
echo ==================================================================
echo Dumping directory listing to c:\dirListing.txt
echo (This may take some time for large directory trees.)
REM the /A switch lists all hidden and system files as well.
REM the /S switch lists all subdirectories and their contents.
dir %1 /w > c:\dirListing.txt
echo Opening c:\dirListing.txt in Notepad (Close notepad to delete file)
notepad c:\dirListing.txt
echo Deleting c:\dirListing.txt
del c:\dirListing.txt
pause