这不起作用(当目录存在时什么都不会发生):
let s_dir = Gio.file_new_for_path("./S1");
try {
s_dir.make_directory(null);
} catch(e) {
if(e == Gio.IOErrorEnum.EXISTS)
print(e);
}
最佳答案
使用GLib.Error.matches()
方法:
let s_dir = Gio.file_new_for_path("./S1");
try {
s_dir.make_directory(null);
} catch(e) {
if (e.matches (Gio.IOErrorEnum, Gio.IOErrorEnum.EXISTS)
print(e);
}
关于javascript - 如何在Gnome/gjs/Gio中检查错误代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48222625/