Can not delete file after downloading from flickr

Ask for help about FlashGot, no registration needed to post
Post Reply
Malebolgia
Posts: 2
Joined: Thu Aug 07, 2014 12:56 pm

Can not delete file after downloading from flickr

Post by Malebolgia »

I downloaded some images from flickr using flashgot. I have done this many times before, but I picked up a ghost file it seems. I can not change properties, rename, delete or do anything to it. It says it doesn't exist but will not disappear, either from restart or any option I try.I put the file name in google to try and research it, and it sent me to flickr... weird to me. The file name is "7215762681.." can not rename and no extension. How do I remove this from my computer. Thank you.
Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:31.0) Gecko/20100101 Firefox/31.0 Waterfox/31.0
User avatar
Thrawn
Master Bug Buster
Posts: 3106
Joined: Mon Jan 16, 2012 3:46 am
Location: Australia
Contact:

Re: Can not delete file after downloading from flickr

Post by Thrawn »

If you can't delete a file, then it sounds like something is wrong with your Windows account privileges and/or file permissions.

Have you scanned your computer for malware recently?
======
Thrawn
------------
Religion is not the opium of the masses. Daily life is the opium of the masses.

True religion, which dares to acknowledge death and challenge the way we live, is an attempt to wake up.
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0
user

Re: Can not delete file after downloading from flickr

Post by user »

Yeah, 2 dots at the end make this file inaccessible for most programs. You can manipulate (remove, rename, etc.) this file using the file namespace prefix "\\?\". If you don't have command-line interface phobia, just use command prompt (cmd.exe). Assuming your file is in the c:\temp folder:
1) remove:

Code: Select all

del "\\?\c:\temp\7215762681.."
2) rename:

Code: Select all

ren "\\?\c:\temp\7215762681.." "new name"
Alternatively, you can use any decent file manager, e.g. FAR. In FAR, use Shift+Del to delete the file, or F6 to rename it.
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 SeaMonkey/2.25
Malebolgia
Posts: 2
Joined: Thu Aug 07, 2014 12:56 pm

Re: Can not delete file after downloading from flickr

Post by Malebolgia »

user wrote:Yeah, 2 dots at the end make this file inaccessible for most programs. You can manipulate (remove, rename, etc.) this file using the file namespace prefix "\\?\". If you don't have command-line interface phobia, just use command prompt (cmd.exe). Assuming your file is in the c:\temp folder:
1) remove:

Code: Select all

del "\\?\c:\temp\7215762681.."
2) rename:

Code: Select all

ren "\\?\c:\temp\7215762681.." "new name"
Alternatively, you can use any decent file manager, e.g. FAR. In FAR, use Shift+Del to delete the file, or F6 to rename it.
Thank you very much. This worked very well. I appreciate the lead to use cmd. Have a pleasant day.
Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:31.0) Gecko/20100101 Firefox/31.0 Waterfox/31.0
Post Reply