This function will remove a directory with the given name in the sandboxed local save area.
警告! 由于 GameMaker Studio 2 被沙箱化,这些函数可能无法正常工作!有关详细信息,请参阅 文件系统限制 部分。
directory_destroy(dname)
参数 | 描述 |
---|---|
dname | 要删除的目录名称。 |
N/A(无返回值)
if directory_exists("DLC")
{
directory_destroy("DLC");
}
这将检查本地数据文件夹中是否存在指定的目录,如果存在,则将其删除。