MATLAB - File I/O
What is the output of the following MATLAB code?
fullPath = fullfile('C:', 'Users', 'Documents', 'file.txt');
[folder, name, ext] = fileparts(fullPath);
disp(folder)