Create a shortcut to a file in a script

7 ビュー (過去 30 日間)
Edward
Edward 2013 年 10 月 15 日
コメント済み: Jan 2013 年 10 月 15 日
Hi, i have two problems,
I need to check if a folder exists, it not i create a folder.
After this i need to create a shortcut to a text file in this new or existing folder.
How do i check if a folder exists and create a file shortcut in MATLAB?
  1 件のコメント
Jan
Jan 2013 年 10 月 15 日
What exactly is "a shortcut" here?

サインインしてコメントする。

回答 (1 件)

Matthew Crema
Matthew Crema 2013 年 10 月 15 日
To create a folder if it does not exist:
if ~exist(foldername,'dir')
mkdir(foldername)
end
To create a shortcut you might use your operating system's appropriate command. Type "help system" at the MATLAB command line.

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by