我有一个文本框,用户可以在其中键入UNC path
,如'\\server_name\testing\'
如何检查此UNC path
是否存在?
我尝试了File
和Directory
的很多选项,并没有得到任何线索。
我目前的代码是
def get_files(path)
Dir.entries(path).select {|f| File.file?(f)}
end
当我尝试访问get_files('\\server_name\testing\')
时。我得到了No such file or directory - No such directory: \\server_name\testing\
当我尝试通过Windows资源管理器访问时,它存在。
由于