• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Reverting xcopy file names

I used xcopy to copy some files and now they are still in dos form.
Ex: something like "down~1"
Is there a program out there that will convert these filenames back to what they were b4 i used xcopy?
Thanks
 
Not totally sure, but I think if you had used xcopy32 instead of just xcopy to copy the files over, it would've preserved the long file names. If you still have access to the source files, I would try using xcopy32 to copy the files over again.

JW
 
thanks
jw310 - unfortunately, i dont have access to the original files because i had to copy the files to another hard drive and format the original.

keep the replies comin! maybe someone out there will know how to do this
 
keep the replies comin! maybe someone out there will know how to do this
It's impossible (except of course renaming them all by hand). Inventing a practical source of nuclear fusion may be easier.
 
keep the replies comin! maybe someone out there will know how to do this

There's nothing to know, what you want is impossible.

Long filenames on FAT partitions are a kludge, they use extra clusters with invalid attribute combinations to store the part of the filename past the 8.3 limit (so you also lose space when you use long filenames, yay!) and when you use a utility that doesn't know about FAT LFNs they just get discarded because the clusters with the LFNs aren't holding any data as far as that utility can see. Unless you can get the original filesystem back and recopy them (or a list of the original file names to try and do it programmatically although that would be a b!tch to get right) they're gone.
 
Back
Top