{"id":7134,"date":"2026-04-07T18:50:34","date_gmt":"2026-04-07T18:50:34","guid":{"rendered":"https:\/\/www.airexplorer.net\/en\/?p=7134"},"modified":"2026-04-07T18:51:47","modified_gmt":"2026-04-07T18:51:47","slug":"how-to-automate-cloud-file-copying-with-command-line","status":"publish","type":"post","link":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/","title":{"rendered":"How to Automate Cloud File Copying with Command Line"},"content":{"rendered":"\n<p>Organizing files within your storage accounts can be a slow task if done manually, especially when handling large volumes of data. Thanks to Air Explorer&#8217;s command line, you can automate the copying of files and folders within the same cloud server. In this article, you will learn how to use the <strong>copy<\/strong> command to make your organizational processes fast, precise, and unattended.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why use the command line to copy files?<\/h2>\n\n\n\n<p>Unlike manual copying in the traditional file explorer, using the <code>copy<\/code> command in the CLI (Command Line Interface) offers strategic benefits:<\/p>\n\n\n\n<ul class=\"wp-block-list has-black-color has-text-color has-link-color wp-elements-759f0556361868582fd7aac7ee757aef\">\n<li><strong>Server-side copy:<\/strong> Air Explorer requests the cloud to perform the copy internally, which saves time and does not consume your internet connection&#8217;s bandwidth.<\/li>\n\n\n\n<li><strong>Task scheduling:<\/strong> Ideal for duplicating project folders or creating periodic security versions without human intervention.<\/li>\n\n\n\n<li><strong>Conflict management:<\/strong> Allows you to define automatic rules for what to do if the file already exists at the destination.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"657\" height=\"431\" src=\"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/01\/cmd01.png\" alt=\"\" class=\"wp-image-6514\" srcset=\"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/01\/cmd01.png 657w, https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/01\/cmd01-300x197.png 300w\" sizes=\"(max-width: 657px) 100vw, 657px\" \/><\/figure>\n\n\n\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Preliminary Configuration in Air Explorer<\/h2>\n\n\n\n<p>To ensure the commands execute correctly, you must first perform a small configuration in the Graphical User Interface:<\/p>\n\n\n\n<ol class=\"wp-block-list has-black-color has-text-color has-link-color wp-elements-61726456de5c0735f45d17459ab4583f\">\n<li><strong>Enable CLI support:<\/strong> Go to the <strong>Options<\/strong> tab, select the <strong>General<\/strong> section, and check the <strong>&#8220;Enable Command Line Support&#8221;<\/strong> box.<\/li>\n\n\n\n<li><strong>Identify the Cloud Alias:<\/strong> Enter the <strong>Accounts<\/strong> window. The name that appears next to your cloud icon (e.g., &#8220;MyGoogleDrive&#8221; or &#8220;OneDrive_Work&#8221;) is the <strong>Alias<\/strong> that we will use in the command.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: The &#8220;copy&#8221; command and its syntax<\/h2>\n\n\n\n<p>The executable in charge of these operations is <code>AirExplorerCmd.exe<\/code>. The basic structure for copying a file or folder is as follows:<\/p>\n\n\n\n<p><code>AirExplorerCmd copy \"cloud_alias\" \"source_path\" \"destination_path\"<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Parameters for controlling existing files<\/h3>\n\n\n\n<p>When automating copies, you can add these modifiers at the end to manage duplicate files:<\/p>\n\n\n\n<ul class=\"wp-block-list has-black-color has-text-color has-link-color wp-elements-3b7cbd52e1cc23bb69e38fb9b16f474d\">\n<li><code>\/O<\/code>: <strong>Overwrite<\/strong> the file if it already exists at the destination (default option).<\/li>\n\n\n\n<li><code>\/R<\/code>: <strong>Rename<\/strong> the copied file if one with the same name already exists.<\/li>\n\n\n\n<li><code>\/S<\/code>: <strong>Skip<\/strong> the copy if the file is already in the destination folder.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Practical Automation Examples<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">A. Duplicate a project folder in Google Drive<\/h3>\n\n\n\n<p>If you need to create a copy of your &#8220;Projects_2024&#8221; folder in an archive folder within the same Google Drive account: <code>AirExplorerCmd copy \"MyGoogleDrive\" \"My drive [myaccount]\/Projects_2024\" \"<code>My drive [myaccount]<\/code>\/Archive\/Old_Projects\" \/S<\/code><\/p>\n\n\n\n<p><strong>PRO Tip:<\/strong> You can get the exact cloud path by <strong>copying it directly from the address bar<\/strong> in Air Explorer while browsing your files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">B. Copy a specific file in Mega<\/h3>\n\n\n\n<p>To copy a database file to a daily backup folder: <code>AirExplorerCmd copy \"Mega_Backup\" \"Mega [myaccount]\/Data\/customers.db\" \"<code>Mega [myaccount]<\/code>\/Backups\/Daily\" \/O<\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Automation with .bat files<\/h2>\n\n\n\n<p>To avoid typing the command manually every time you need to perform a copy, the best approach is to create an executable file in Windows:<\/p>\n\n\n\n<ol class=\"wp-block-list has-black-color has-text-color has-link-color wp-elements-24317f2b74d3d97e58238a6928f61b27\">\n<li>Open Notepad and type your command.<\/li>\n\n\n\n<li>Save it with the <strong>.bat<\/strong> extension (for example: <code>internal_cloud_copy.bat<\/code>).<\/li>\n\n\n\n<li>Double-click the&nbsp;<code>.bat<\/code>&nbsp;file to start the copy.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1000\" height=\"480\" src=\"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/Gemini_Generated_Image_xjr7l2xjr7l2xjr7.jpg\" alt=\"How to Automate Cloud File Copying with Command Line\" class=\"wp-image-7187\" srcset=\"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/Gemini_Generated_Image_xjr7l2xjr7l2xjr7.jpg 1000w, https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/Gemini_Generated_Image_xjr7l2xjr7l2xjr7-300x144.jpg 300w, https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/Gemini_Generated_Image_xjr7l2xjr7l2xjr7-768x369.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ: Frequently Asked Questions about the copy command<\/h2>\n\n\n\n<p><strong>Can I copy files between different clouds with this command?<\/strong> No, the <code>copy<\/code> command is designed to copy files or folders within the same cloud account. To copy files between different providers, it is recommended to use the <code>transfer<\/code> command.<\/p>\n\n\n\n<p><strong>What happens if the destination folder does not exist in the cloud?<\/strong> Air Explorer is smart: if the destination path is not found, the program will automatically create it before performing the copy.<\/p>\n\n\n\n<p><strong>Is the Pro version required?<\/strong> Yes, access to command line features is an advanced feature exclusive to Air Explorer Pro version users.<\/p>\n\n\n\n<p><strong>Can I copy an entire folder with subfolders?<\/strong> Yes. By specifying a folder path as the source, the <code>copy<\/code> command will perform a recursive copy of all its content to the destination location.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Automating file copying with Air Explorer&#8217;s command line is the most efficient solution for keeping your clouds organized professionally. By running directly on the server, you save resources and ensure your workflows are fast and secure.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>You can check more information here:<\/strong><br><a href=\"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-downloads-with-the-command-line\/\" type=\"link\" id=\"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-downloads-with-the-command-line\/\">-How to Automate Cloud File Downloads with the Command Line<\/a><br><a href=\"https:\/\/www.airexplorer.net\/en\/how-to-automate-file-uploads-to-the-cloud-using-air-explorers-command-line\/\" type=\"link\" id=\"https:\/\/www.airexplorer.net\/en\/how-to-automate-file-uploads-to-the-cloud-using-air-explorers-command-line\/\">-How to Automate File Uploads to the Cloud Using Air Explorer\u2019s Command Line<\/a><br><a href=\"https:\/\/www.airexplorer.net\/en\/google-drive-to-onedrive-how-to-automate-syncs-with-air-explorers-command-line\/\" type=\"link\" id=\"https:\/\/www.airexplorer.net\/en\/google-drive-to-onedrive-how-to-automate-syncs-with-air-explorers-command-line\/\">-Google Drive to OneDrive: How to automate syncs with Air Explorer\u2019s command line<\/a><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Organizing files within your storage accounts can be a slow task if done manually, especially when handling large volumes of data. Thanks to Air Explorer&#8217;s command line, you can automate the copying of files and folders within the same cloud server. In this article, you will learn how to use the copy command to make&hellip; <br \/> <a class=\"read-more\" href=\"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":7190,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[306,37],"class_list":["post-7134","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-manual","tag-command-line-2","tag-copy"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Automate Cloud File Copying with Command Line<\/title>\n<meta name=\"description\" content=\"How to Automate Cloud File Copying with Command Line of Air Explorer\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Automate Cloud File Copying with Command Line\" \/>\n<meta property=\"og:description\" content=\"How to Automate Cloud File Copying with Command Line of Air Explorer\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/\" \/>\n<meta property=\"og:site_name\" content=\"Air Explorer\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-07T18:50:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-07T18:51:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Air Explorer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Air Explorer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/\"},\"author\":{\"name\":\"Air Explorer\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#\\\/schema\\\/person\\\/2165af4aa35f7d5cc9002c6fd1913037\"},\"headline\":\"How to Automate Cloud File Copying with Command Line\",\"datePublished\":\"2026-04-07T18:50:34+00:00\",\"dateModified\":\"2026-04-07T18:51:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/\"},\"wordCount\":668,\"publisher\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/1.jpg\",\"keywords\":[\"command line\",\"copy\"],\"articleSection\":[\"manual\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/\",\"url\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/\",\"name\":\"How to Automate Cloud File Copying with Command Line\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/1.jpg\",\"datePublished\":\"2026-04-07T18:50:34+00:00\",\"dateModified\":\"2026-04-07T18:51:47+00:00\",\"description\":\"How to Automate Cloud File Copying with Command Line of Air Explorer\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/1.jpg\",\"width\":1200,\"height\":675},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/how-to-automate-cloud-file-copying-with-command-line\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Automate Cloud File Copying with Command Line\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/\",\"name\":\"Air Explorer\",\"description\":\"Air Explorer, the multicloud manager\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#organization\",\"name\":\"Air Explorer\",\"url\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2019\\\/10\\\/cropped-cloud512.png\",\"contentUrl\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2019\\\/10\\\/cropped-cloud512.png\",\"width\":512,\"height\":512,\"caption\":\"Air Explorer\"},\"image\":{\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/#\\\/schema\\\/person\\\/2165af4aa35f7d5cc9002c6fd1913037\",\"name\":\"Air Explorer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f5bcf1b2af71b0be30fd8b47a33696bc30b34b314cd7f289ec76129a626f80d3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f5bcf1b2af71b0be30fd8b47a33696bc30b34b314cd7f289ec76129a626f80d3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f5bcf1b2af71b0be30fd8b47a33696bc30b34b314cd7f289ec76129a626f80d3?s=96&d=mm&r=g\",\"caption\":\"Air Explorer\"},\"url\":\"https:\\\/\\\/www.airexplorer.net\\\/en\\\/author\\\/airexploreradmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Automate Cloud File Copying with Command Line","description":"How to Automate Cloud File Copying with Command Line of Air Explorer","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/","og_locale":"en_US","og_type":"article","og_title":"How to Automate Cloud File Copying with Command Line","og_description":"How to Automate Cloud File Copying with Command Line of Air Explorer","og_url":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/","og_site_name":"Air Explorer","article_published_time":"2026-04-07T18:50:34+00:00","article_modified_time":"2026-04-07T18:51:47+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/1.jpg","type":"image\/jpeg"}],"author":"Air Explorer","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Air Explorer","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/#article","isPartOf":{"@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/"},"author":{"name":"Air Explorer","@id":"https:\/\/www.airexplorer.net\/en\/#\/schema\/person\/2165af4aa35f7d5cc9002c6fd1913037"},"headline":"How to Automate Cloud File Copying with Command Line","datePublished":"2026-04-07T18:50:34+00:00","dateModified":"2026-04-07T18:51:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/"},"wordCount":668,"publisher":{"@id":"https:\/\/www.airexplorer.net\/en\/#organization"},"image":{"@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/1.jpg","keywords":["command line","copy"],"articleSection":["manual"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/","url":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/","name":"How to Automate Cloud File Copying with Command Line","isPartOf":{"@id":"https:\/\/www.airexplorer.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/#primaryimage"},"image":{"@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/1.jpg","datePublished":"2026-04-07T18:50:34+00:00","dateModified":"2026-04-07T18:51:47+00:00","description":"How to Automate Cloud File Copying with Command Line of Air Explorer","breadcrumb":{"@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/#primaryimage","url":"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/1.jpg","contentUrl":"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2026\/04\/1.jpg","width":1200,"height":675},{"@type":"BreadcrumbList","@id":"https:\/\/www.airexplorer.net\/en\/how-to-automate-cloud-file-copying-with-command-line\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.airexplorer.net\/en\/"},{"@type":"ListItem","position":2,"name":"How to Automate Cloud File Copying with Command Line"}]},{"@type":"WebSite","@id":"https:\/\/www.airexplorer.net\/en\/#website","url":"https:\/\/www.airexplorer.net\/en\/","name":"Air Explorer","description":"Air Explorer, the multicloud manager","publisher":{"@id":"https:\/\/www.airexplorer.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.airexplorer.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.airexplorer.net\/en\/#organization","name":"Air Explorer","url":"https:\/\/www.airexplorer.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.airexplorer.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2019\/10\/cropped-cloud512.png","contentUrl":"https:\/\/www.airexplorer.net\/en\/wp-content\/uploads\/sites\/2\/2019\/10\/cropped-cloud512.png","width":512,"height":512,"caption":"Air Explorer"},"image":{"@id":"https:\/\/www.airexplorer.net\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.airexplorer.net\/en\/#\/schema\/person\/2165af4aa35f7d5cc9002c6fd1913037","name":"Air Explorer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f5bcf1b2af71b0be30fd8b47a33696bc30b34b314cd7f289ec76129a626f80d3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f5bcf1b2af71b0be30fd8b47a33696bc30b34b314cd7f289ec76129a626f80d3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f5bcf1b2af71b0be30fd8b47a33696bc30b34b314cd7f289ec76129a626f80d3?s=96&d=mm&r=g","caption":"Air Explorer"},"url":"https:\/\/www.airexplorer.net\/en\/author\/airexploreradmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/posts\/7134","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/comments?post=7134"}],"version-history":[{"count":8,"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/posts\/7134\/revisions"}],"predecessor-version":[{"id":7192,"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/posts\/7134\/revisions\/7192"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/media\/7190"}],"wp:attachment":[{"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/media?parent=7134"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/categories?post=7134"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.airexplorer.net\/en\/wp-json\/wp\/v2\/tags?post=7134"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}