RESOLVED 800 - Folder is appearing as read only when it's not possible
Posted: 13.07.2019, 18:55
See attached the problem and a zip link to the problem folder also for testing.
File:
https://we.tl/t-Iio6WeNfnA
Image showing problem:

I fixed this with a batch file inside that folder:
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.
File:
https://we.tl/t-Iio6WeNfnA
Image showing problem:

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