13#ifndef GDALALG_VSI_MOVE_INCLUDED
14#define GDALALG_VSI_MOVE_INCLUDED
16#include "gdalalgorithm.h"
27 static constexpr const char *NAME =
"move";
28 static constexpr const char *DESCRIPTION =
29 "Move/rename a file/directory located on GDAL Virtual System Interface "
31 static constexpr const char *HELP_URL =
"/programs/gdal_vsi_move.html";
33 static std::vector<std::string> GetAliasesStatic()
35 return {
"mv",
"ren",
"rename"};
38 GDALVSIMoveAlgorithm();
41 std::string m_source{};
42 std::string m_destination{};
44 bool RunImpl(GDALProgressFunc,
void *)
override;
GDAL algorithm.
Definition gdalalgorithm_cpp.h:2261