标签:tis drive matlab 创建 abc tla dma atl 运行
1. folder是相对路径:
folder = ‘./abc/‘;
if ~exist(folder,‘dir‘)
mkdir(folder)
end
在当前文件夹(存放所运行的matlab代码的文件夹)中判断是否存在文件夹abc,如果不存在,则创建。
2. folder是绝对路径:
folder = ‘D:\qcc\HDmap_statistics_opendrive\python_code\33782107\paramPolyhhhh\‘;
if ~exist(folder,‘dir‘)
mkdir(folder)
end
标签:tis drive matlab 创建 abc tla dma atl 运行
原文地址:https://www.cnblogs.com/yibeimingyue/p/13071567.html