Info
此问题已关闭。 请重新打开它进行编辑或回答。
creating new file using data base
1 次查看(过去 30 天)
显示 更早的评论
this is my project
function[w]=check()
w=0;
q= input('Enter the name of file ','s');
switch(q)
case('dk')
if (exist('dk.wav') == 2)
disp('File is presesnt ');
w=w+1;
end
otherwise
disp('File is not presesnt ');
end
i just want that user will give name if that name is not present then it will create a new .wav file and come in case so that i can check like case ('dk') if new file has been created then that will automatically or by some way come in case (---) kindly guide me i shall be thank full to you
0 个评论
回答(1 个)
KSSV
2017-5-8
filename = input('Enter the name of file with extension: ','s');
if exist(filename,'file')
fprintf('%s file exists\n',filename)
else
fprintf('%s file doesnot exist and I am creating\n',filename)
data = rand(10,1) ; % some data to write into file
save(filename,'data','-ascii')
end
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!