Move-File: Can't move certain Files to another Folder!
    5 views (last 30 days)
  
       Show older comments
    
    Malte Räuchle
 on 6 Jul 2020
  
    
    
    
    
    Commented: Malte Räuchle
 on 7 Jul 2020
            Hello! I want to extract some Files based on a certain criteria (here: bytes < 70 000 000). But I don't get it to work, some Ideas?
This is my approach so far..
files_zum_Testen = dir('...\MOVE_MDF\*.mf4');
move_bedingung = [files_zum_Testen.bytes] < 70000000;
move_list = fullfile({files_zum_Testen(move_bedingung).folder}, {files_zum_Testen(move_bedingung).name});
movefile (move_list, newFolder)
1 Comment
  Stephen23
      
      
 on 6 Jul 2020
				You will need to use a loop, and move each file separately.
The movefile documentation describes its source input as one character vector or string scalar, It does not state that the source can be a cell array of character vectors or a non-scalar string.
It states that multiple files can be matched using the wildcard *. But because you want to match on some other property (not using a wildcard) you will have to call movefile for each file.
Accepted Answer
  Geoff Hayes
      
      
 on 6 Jul 2020
        Malte - you haven't posted the error message or describe fully what you mean by I don't get it to work. According to movefile input arguments, the source is a character vector corresponding to a single file or directory. I don't think that passing in a cell array (list of files) will work and so you will need to move each file individually.
7 Comments
  Stephen23
      
      
 on 7 Jul 2020
				
      Edited: Stephen23
      
      
 on 7 Jul 2020
  
			"And I have no explanation for it.."
Your approach means that when the logical scalar fileToMove is false then you are generating comma-separated lists with zero outputs, and so fullfile has zero input arguments. That causes the error. While you could make this approach work (e.g. use if and you need to use index k rather than a logical scalar to select from files_zum_Testen) it would likely be simpler and clearer to use the logical array to filter the required files before the loop, e.g.:
D = '...\MOVE_MDF';
S = dir(fullfile(D,'*.mf4'));
X = [S.bytes] < 70000000;
C = {S(X).name}; % filter here!
for k = 1:numel(C)
    F = fullfile(D,C{k});
    movefile(F, newFolder)
end
More Answers (0)
See Also
Categories
				Find more on Search Path in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

