Catalin Ancutei
Catalin Ancutei
fixes: https://github.com/gokcehan/lf/issues/1683 On windows a file is considered hidden only if it has `FILE_ATTRIBUTE_HIDDEN` set. While this is the correct way to check if a file is hidden on windows,...
Hello, I noticed on Windows that when checking if a file is hidden we directly check the file attributes and we ignore the `hiddenfiles` parameter. ```go func isHidden(f os.FileInfo, path...
Hello, I noticed that there is no way to open another process directly. Even if we don't have any shell logic ( just open an exe with some arguments )...