Add directory path to fopen

2 次查看(过去 30 天)
I have this code:
name = strrep(name,' ','_');
date = strrep(date,' ','_');
FileName=[name '_' date '.txt'];
file=fopen(FileName,'wt');
it creates a text file with the name and date I get from some edittext box in GUI in the current folder.
Can I add a directory path to that so it creates the text file in another folder like: ../DB/filename.txt ?

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2015-7-7
file=fopen(fullfile(pwd,FileName),'wt')
  2 个评论
Graur Alin
Graur Alin 2015-7-7
Ok, it does the same thing. Let me explain again what I really need. This function creates the text file in the current work folder, let's say /Work/name_date.txt. I need it to create the text file in another folder inside the Work folder, like /Work/DB/name_date.txt.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by