You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
os.RemoveAll may return a SyscallError(NOENT) when the directory it's working on gets deleted. RemoveAll calls Readdirnames which calls readdirnames which could return SyscallError. Since SyscallError could contain a NOENT error, it should be handled by os.IsNotExist.
Happened on a linux machine.
The text was updated successfully, but these errors were encountered:
os.RemoveAll may return a SyscallError(NOENT) when the directory it's working on gets deleted. RemoveAll calls Readdirnames which calls readdirnames which could return SyscallError. Since SyscallError could contain a NOENT error, it should be handled by os.IsNotExist.
Happened on a linux machine.
The text was updated successfully, but these errors were encountered: