gpt4 book ai didi

javascript - 如何检查 Gnome/gjs/Gio 中的错误代码

转载 作者:行者123 更新时间:2023-11-28 17:39:44 24 4
gpt4 key购买 nike

这不起作用(当目录存在时什么也不会发生):

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com