• 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.

Long file path issue in Windows 7 - how to delete????

lektrix

Golden Member
What's the easiest way to delete these files and folders without going into them one by one and moving them to a shorter path??? I tried robocopy /purge but it tells me access denied.. I am stuck!
 
You might be able to create a junction e.g.

Code:
cd \
mklink /J tiny c:\insanely\long\path\to\folder\you\cant\delete
 
I guess I do not really understand the issue (my fault, comprehension is on me). Are you looking to change the path to something shorter? I thought you could do that easily and windows just makes a transparent link to the old location.
 
You might be able to create a junction e.g.

Code:
cd \
mklink /J tiny c:\insanely\long\path\to\folder\you\cant\delete
That's how I have to do it with file shares that users create ridiculously long path names in because the first few folders are truncated by the SMB share allowing the users in question to go that much deeper.

There is a neat utility for facilitating the creation of the links that I've not yet messed with.
 
Back
Top