/**
 * Implements `MakeDirectory(path)` operation.
 * Send this message to make a directory. Parent
 * directories will be made if they do not already
 * exist in the path.
 */
message MakeDirectoryPath {
  string path = 1;
}
