Page 1 of 1

RESOLVED 800 - Folder is appearing as read only when it's not possible

Posted: 13.07.2019, 18:55
by stephen147
See attached the problem and a zip link to the problem folder also for testing.


File:
https://we.tl/t-Iio6WeNfnA

Image showing problem:
Image

I fixed this with a batch file inside that folder:

Code: Select all

@echo off
rem Place this inside a folder and run to remove the read-only attribute in the root folder and any folders or files within.
color 5F
cd /d "%~dp0"
pause
echo.
echo.Removing the read-only attribute in the root folder (below) and any folders or files within:
echo.%cd%
attrib -r "%cd%"
attrib -r "%cd%\*.*"
echo.
echo.Done
timeout /T 10
EXIT
This is probably a Windows issue but it would be good to have Marek check this out to see if there's an issue with FC.

Re: BUG 800 - Folder is appearing as read only when it's not possible

Posted: 14.07.2019, 21:33
by stephen147
I fixed this issue by only applying it to files no older than 100 years... :lol:

Image