18

I have downloaded this pdf file with a very long name, which cannot be opened by Adobe Reader or by Adobe Professional because it has "invalid file name".

It cannot be renamed using the DOS prompt but it has "too long name or extension". I tried to delete so that my recovery program can rename then restore it, it but it won't be deleted as a file.

The only way to delete it is by deleting the folder where it was downloaded into (which I did, but restored it later). It can't also be printed or moved or copied to another folder. Is there a way to open or rename these kinds of files?

I tried to rename it by right clicking the title but what appears is a shortened version of the options with no rename function. I then discovered that it has a password protection, which is not provided by the website from which I downloaded it.

Paul
  • 59,223
  • 18
  • 147
  • 168
elmer m
  • 183
  • 1
  • 1
  • 4
  • Edited the question. The fact that it's a protected PDF is irrelevant to your question, but I can understand you thinking it has something to do with the issue. – Jan Doggen Aug 29 '13 at 09:09
  • 2
    This is not a duplicate because it asks how to rename the file rather than delete it. The answers in the linked 'duplicate' question address how to delete the file without retaining it. – Tim MB Apr 23 '19 at 10:01

1 Answers1

17

To rename a file with long file name you can try to rename it by using the short (8+3) windows name.

  • open command prompt and find the directory with the file
  • type dir /X
  • this command will show the short 8+3 names followed by long names
  • find the file you want to rename and use command

    rename "shortname" "newname"

  • "shortname" is 8+3 name and "newname" is name you want to rename to

Example: if you have a file named "verylongfilename.txt", it should have short name "verylo~1.txt" so you would use command

rename verylo~1.txt newname.txt

and should end up with file "newname.txt".

T. Kaltnekar
  • 8,294
  • 2
  • 29
  • 25