Table of Contents
Tests for existence of files or paths of files stored on Mega.nz.
If all <remotepaths>
match the condition, the tool returns status code 0.
If one of the <remotepaths>
doesn’t exist, the tool returns 1.
If one of the <remotepaths>
doesn’t match the -f
or -d
filter, the tool returns 2.
For other errors, the tool returns 3.
<remotepaths>
to be files.
<remotepaths>
to be folders.
Use proxy server to connect to mega.nz. This option overrides config file settings. More information can be found in libcurl documentation at https://curl.haxx.se/libcurl/c/CURLOPT_PROXY.html. Some acceptable values are:
none
: Disable proxy if it was enabled in the config file.
socks5://localhost:9050
: Local SOCKSv5 proxy server
socks5h://localhost:9050
: Local SOCKSv5 proxy server with DNS handled by the proxy
Enable debugging of various aspects of the megatools
operation. You may enable multiple debugging options
separated by commas. (eg. --debug api,fs
)
Available options are:
http
: Dump HTTP request/response details (can be used to debug connection/proxy issues)
api
: Dump Mega.nz API calls
fs
: Dump Mega.nz filesystem (may require --reload
to actually print something)
cache
: Dump cache contents
tman
: Dump transfer manager events
Test for existence of a path:
$ megatools test /Root/README $ test $? -eq 0 && echo "File or folder exists at /Root/README" File or folder exists at /Root/README
Test for existence of multiple files:
$ megatools test -f /Root/file1 /Root/file2 $ test $? -eq 0 && echo "/Root/file1 and /Root/file2 are both files" /Root/file1 and /Root/file2 are both files
Mega.nz filesystem is represented as a tree of nodes of various types. Nodes
are identified by a 8 character node handles (eg. 7Fdi3ZjC
). Structure of the
filesystem is not encrypted.
Megatools maps node tree structure to a traditional filesystem paths (eg.
/Root/SomeFile.DAT
).
NOTE: By the nature of Mega.nz storage, several files in the directory can have the same name. To allow access to such files, the names of conflicting files are extended by appending dot and their node handle like this:
/Root/conflictingfile /Root/conflictingfile.7Fdi3ZjC /Root/conflictingfile.mEU23aSD
You need to be aware of several special folders:
megatools(1), megarc(5), megatools-df(1), megatools-dl(1), megatools-get(1), megatools-ls(1), megatools-mkdir(1), megatools-put(1), megatools-reg(1), megatools-rm(1), megatools-copy(1).
Part of the megatools(1) suite of commands.
Report bugs to megatools@megous.com. Your message will end up in a public archive, so be careful what you say or send.
Megatools was written by Ondrej Jirman <megatools@megous.com>, 2013-2022.
Official website is http://megatools.megous.com.