-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathDropbox.m
36 lines (31 loc) · 932 Bytes
/
Dropbox.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
function [ res, cmd_out ] = Dropbox( action )
% Function to start and kill dropbox from MATLAB
%
% Syntax: [ res, cmd_out ] = Dropbox( action )
%
% Inputs:
% action - Action to perform. Either 'start' or 'kill.
%
% Outputs:
% res - Command exit status
% cmd_out - Output of the operating system command
%
% Author: Jacob Donley
% University of Wollongong
% Email: [email protected]
% Copyright: Jacob Donley 2017
% Date: 3 October 2015
% Revision: 0.1
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch lower(action)
case 'start'
[res, cmd_out] = dos('start "" "%APPDATA%\Dropbox\bin\Dropbox.exe" & exit');
disp('... Started Dropbox');
case 'kill'
[res, cmd_out] = dos('taskkill /F /IM Dropbox.exe');
if res==0, disp('Terminated Dropbox ...'); end
otherwise
error('Dropbox action not supported...');
end
end