{"id":8213,"date":"2025-02-12T20:14:23","date_gmt":"2025-02-12T14:44:23","guid":{"rendered":"https:\/\/www.conceptworld.com\/blog\/?p=8213"},"modified":"2025-05-17T12:47:42","modified_gmt":"2025-05-17T07:17:42","slug":"copy-only-specific-type-of-files-or-folders-in-windows-using-powershell-alternative-replacement","status":"publish","type":"post","link":"https:\/\/www.conceptworld.com\/blog\/index.php\/copy-only-specific-type-of-files-or-folders-in-windows-using-powershell-alternative-replacement\/","title":{"rendered":"Copy only specific type of files or folders in Windows using Powershell alternative replacement."},"content":{"rendered":"\n<p>Hi Friends! Copying specific type of files or folders is time-saving. Helps avoid copying unnecessary files or folders, speeding up the process. Here we have tools Copywhiz and Powershell to simplify this process. Here\u2019s a step-by-step guide on how to use these tools effectively.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Copywhiz?<\/h2>\n\n\n\n<p><a href=\"https:\/\/www.conceptworld.com\/Copywhiz\" data-type=\"link\" data-id=\"https:\/\/www.conceptworld.com\/Copywhiz\" target=\"_blank\" rel=\"noreferrer noopener\">Copywhiz<\/a> enhances your file-copy experience by letting you to have more flexibility &amp; control over the file copying and backup process. <\/p>\n\n\n\n<p>Here is how <a href=\"https:\/\/www.conceptworld.com\/Copywhiz\" data-type=\"link\" data-id=\"https:\/\/www.conceptworld.com\/Copywhiz\" target=\"_blank\" rel=\"noreferrer noopener\">Copywhiz<\/a> makes file copying a breeze: <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Copy only new or modified files<\/li>\n\n\n\n<li>Easily pick files by name, extension, folder etc from bunch of folders<\/li>\n\n\n\n<li>Automatically organize files based on file attributes and metadata<\/li>\n\n\n\n<li>Copy files to multiple folders\/computers<\/li>\n\n\n\n<li>Copy files from multiple folders and paste them at once<\/li>\n\n\n\n<li>Sync files between source and destination<\/li>\n\n\n\n<li>Pick files from multiple folders and compress in single .zip file<\/li>\n\n\n\n<li>Schedule file backups<\/li>\n\n\n\n<li>Verify copied files for data integrity<\/li>\n\n\n\n<li>Retain security attributes of files &amp; folders (ownership\/user access)<\/li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.conceptworld.com\/Copywhiz\/Features\" target=\"_blank\">Several more hidden nuggets<\/a>&nbsp;designed to make your file-copy task easier.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Windows: Pause file copy and resume from same point using Copywhiz\" width=\"660\" height=\"495\" src=\"https:\/\/www.youtube.com\/embed\/Mxregx_bEP8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Transcription:<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Select files using Windows Explorer, right-click on them and choose&nbsp;<em>Copywhiz-&gt;Copy<\/em>&nbsp;from the menu.<\/li>\n\n\n\n<li>Go to the destination folder, right-click inside the folder and select\u00a0<em>Copywhiz\u2013>Paste special\u2013>Paste only files of specific types<\/em>.<br><br><img decoding=\"async\" class=\"img-border\" style=\"width: 524px;\" src=\"https:\/\/www.conceptworld.com\/blog\/uploads\/2015\/03\/Excluded.png\" alt=\"\"><br><br><\/li>\n\n\n\n<li>The Settings dialog box will open. You can include or exclude files\/folders to be copied by typing their names, file extensions, or folder names. You can also preview the list of files that will be copied and files that will be skipped by clicking on the&nbsp;<em>Preview<\/em>&nbsp;button. After confirming, press the&nbsp;<em>Ok<\/em>&nbsp;button in the Settings dialog box. All required files are copied successfully.<br><br><img decoding=\"async\" src=\"https:\/\/www.conceptworld.com\/blog\/uploads\/2015\/03\/Excluded1.png\" class=\"img-border\" alt=\"\" style=\"width: 524px;\"><\/li>\n<\/ol>\n\n\n\n<p>That\u2019s it in this video.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using Powershell:<\/h2>\n\n\n\n<p>Below are the steps guiding using Powershell:<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"1\">\n<li><strong>Open PowerShell:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Press <code>Win + S<\/code>, type <code>PowerShell<\/code>, and select <strong>Windows PowerShell<\/strong>.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Use the Get-ChildItem Command:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Use <code>Get-ChildItem<\/code> to filter files by type and copy them to a destination.<\/li>\n\n\n\n<li>Example command:<code>Get-ChildItem -Path \"C:\\Source\" -Include *.jpg,*.txt -Recurse | Copy-Item -Destination \"D:\\Target\"<\/code>\n<ul class=\"wp-block-list\">\n<li>Replace <code>C:\\Source<\/code> with your source folder.<\/li>\n\n\n\n<li>Replace <code>D:\\Target<\/code> with your destination folder.<\/li>\n\n\n\n<li>Adjust the file types (e.g., <code>*.jpg<\/code>, <code>*.txt<\/code>) as needed.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Run the Command:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Press Enter to execute the command. PowerShell will copy all files matching the specified types from the source to the destination.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Review the Results:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Check the destination folder to ensure only the filtered files were copied.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion:<\/h2>\n\n\n\n<p>For more tutorial videos,&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.conceptworld.com\/Copywhiz\/Videos\" target=\"_blank\">check out this page<\/a>.<\/p>\n\n\n\n<p>Subscribe to our&nbsp;<a href=\"https:\/\/www.youtube.com\/channel\/UCULI5s6KJn-0iDIeqJRUWQA\/featured?view_as=subscriber\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube channel<\/a>&nbsp;for interesting videos.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.conceptworld.com\/Copywhiz\" target=\"_blank\" rel=\"noreferrer noopener\">Learn more about<\/a>&nbsp;Copywhiz. Download the free trial&nbsp;<a href=\"https:\/\/www.conceptworld.com\/Copywhiz\/Download\">from here<\/a>.<\/p>\n\n\n\n<p>Have a good day.<\/p>\n\n\n\n<p>Thanks for staying till the end :)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hi Friends! Copying specific type of files or folders is time-saving. Helps avoid copying unnecessary files or folders, speeding up the process. Here we have tools Copywhiz and Powershell to simplify this process. Here\u2019s a step-by-step guide on how to use these tools effectively. Transcription: That\u2019s it in this video. Using Powershell: Below are the &hellip; <a href=\"https:\/\/www.conceptworld.com\/blog\/index.php\/copy-only-specific-type-of-files-or-folders-in-windows-using-powershell-alternative-replacement\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Copy only specific type of files or folders in Windows using Powershell alternative replacement.<\/span><\/a><\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-8213","post","type-post","status-publish","format-standard","hentry","category-copywhiz"],"_links":{"self":[{"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/posts\/8213","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/comments?post=8213"}],"version-history":[{"count":3,"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/posts\/8213\/revisions"}],"predecessor-version":[{"id":8424,"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/posts\/8213\/revisions\/8424"}],"wp:attachment":[{"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/media?parent=8213"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/categories?post=8213"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.conceptworld.com\/blog\/index.php\/wp-json\/wp\/v2\/tags?post=8213"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}