{"id":1828,"date":"2014-12-14T23:28:11","date_gmt":"2014-12-14T23:28:11","guid":{"rendered":"http:\/\/evolphin.com\/help\/?p=1828"},"modified":"2014-12-14T23:28:11","modified_gmt":"2014-12-14T23:28:11","slug":"hot-folder-script-smart-copy-duplicates-launch-a-job","status":"publish","type":"post","link":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/","title":{"rendered":"Hot Folder Script:  Smart-copy duplicates &amp; launch a job"},"content":{"rendered":"<p>This tutorial walks you through a sample Perl script running on a hot folder on a Linux server. You can apply similar concepts to write scripts that run on a Windows Server. In fact, if you install <a title=\"Cygwin on Windows\" href=\"https:\/\/cygwin.com\/install.html\" target=\"_blank\" rel=\"noopener noreferrer\">Cygwin<\/a> on the Windows Server, you could even run a Perl script directly on Windows, if you prefer Perl as the scripting language. But there is no restriction in Zoom on which programming language to use.<\/p>\n<p><strong>Purpose<\/strong>:<\/p>\n<ol>\n<li>Weed out duplicates in the assets dropped in the Hot Folder. If an asset is a duplicate of a asset already in Zoom, make a smart-copy of the new asset. If an asset is a duplicate of a new asset, not yet ingested, but exists in the Hot Folder, make a smart-copy once the parent asset is ingested.<\/li>\n<li>Once assets are ingested, launch a pre-defined workflow job from a Zoom workflow template and assign newly ingested assets to the first task<\/li>\n<\/ol>\n<p>A full copy of the Perl script can be <a title=\"Smart Copy based Perl Ingest Script\" href=\"https:\/\/evolphin.com\/help\/examples\/scripts\/smart-copy-ingest.pl\" target=\"_blank\" rel=\"noopener noreferrer\">downloaded from here<\/a>. To add this script to the Hot Folder configuration, you must use the parent <a title=\"BASH Script forks Perl script\" href=\"https:\/\/evolphin.com\/help\/examples\/scripts\/avoid-duplicates.sh\" target=\"_blank\" rel=\"noopener noreferrer\">BASH Script<\/a> that executes the Perl script in the Hot Folder pre-script settings.<\/p>\n<p id=\"URwXJvM\"><img decoding=\"async\" class=\"alignnone size-full wp-image-1830 \" src=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1878cc6ba.png\" alt=\"\" \/><\/p>\n<p>Line 65: read MD5 checksums of the files that were imported through this hot folder. The checksum is used to test if a file has been ingested or is a duplicate of an existing file in the hot folder<\/p>\n<p>Line 82: Compute the MD5 checksum of the files inside the hot folder or sub-folders within the hot folder.<\/p>\n<p>Line 89: Get the file path\u00a0of the primordial file with the same checksum.<\/p>\n<p>Line 91: If no matching file path found, then this file is the primordial file, import is directly using the Zoom command line API (CLI) in line 92<\/p>\n<p>Line 97: If there exists a primordial file, then instead of import, use the Zoom smart-copy CLI (fork command) to create a smart-copy of the duplicate file in line 100<\/p>\n<p>Once the files are smart-copied or imported, get the unique asset ID aka FUID for each of the ingested file<\/p>\n<p id=\"ihFjZTI\"><img decoding=\"async\" class=\"alignnone size-full wp-image-1831 \" src=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1a2a03f16.png\" alt=\"\" \/><\/p>\n<p>\u00a0The getFuid() perl sub-routine uses the Zoom web API,<code class=\"\"> \/util.jsp?op=getfuid&amp;path=&lt;asset-zoom-path&gt;<\/code> to convert the file path\/names to an asset ID\/FUID:<\/p>\n<p id=\"FYcaUxZ\"><img decoding=\"async\" class=\"alignnone size-full wp-image-1833 \" src=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1a9cac001.png\" alt=\"\" \/><\/p>\n<p>Line 22: Web end-point to invoke to convert each file path to an asset ID.<\/p>\n<p id=\"XbyWmbe\"><img decoding=\"async\" class=\"alignnone size-full wp-image-1832 \" src=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1a7c9514b.png\" alt=\"\" \/><\/p>\n<p>Line 266: Use Linux curl utility to invoke the web -end point with UTF8 encoded file paths.<\/p>\n<p id=\"AAAzlBV\"><img decoding=\"async\" class=\"alignnone size-full wp-image-1834 \" src=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1b48419c4.png\" alt=\"\" \/><\/p>\n<p>Line 135: Invoke the createworkflow CLI with the list of asset IDs to assign to the first task in the job. The various parameters to createworkflow CLI are specified as:<\/p>\n<p>&nbsp;<\/p>\n<table style=\"height: 90px; border-color: #b3b1b1;\" width=\"892\" cellpadding=\"5\">\n<tbody>\n<tr>\n<td><strong>Argument<\/strong><\/td>\n<td><strong>Description<\/strong><\/td>\n<\/tr>\n<tr>\n<td>-c create<\/td>\n<td>Create a new job. -c specified the sub-command name: could be delete or create<\/td>\n<\/tr>\n<tr>\n<td>-s template<\/td>\n<td>Source of the job is a workflow template instead of cloning another job<\/td>\n<\/tr>\n<tr>\n<td>&#8211;fuids $csvFuids<\/td>\n<td>Comma separated value list of asset IDs obtained at Line 266 above<\/td>\n<\/tr>\n<tr>\n<td>-wp \u00a0id=$WF_TMPL_ID<\/td>\n<td>Workflow sub-command parameter is the Template id of the Workflow Template in Zoom to use<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p>Line 137: If the workflow is successfully launched, log a message to the server&#8217;s messages console.<\/p>\n<p>A full copy of the Perl script can be <a title=\"Smart Copy based Perl Ingest Script\" href=\"https:\/\/evolphin.com\/help\/examples\/scripts\/smart-copy-ingest.pl\" target=\"_blank\" rel=\"noopener noreferrer\">downloaded from here<\/a>. To add this script to the Hot Folder configuration, you must use the parent <a title=\"BASH Script forks Perl script\" href=\"https:\/\/evolphin.com\/help\/examples\/scripts\/avoid-duplicates.sh\" target=\"_blank\" rel=\"noopener noreferrer\">BASH Script<\/a> that executes the Perl script.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial walks you through a sample Perl script running on a hot folder on a Linux server. You can apply similar concepts to write scripts that run on a Windows Server. In fact, if you install Cygwin on the Windows Server, you could even run a Perl script directly on Windows, if you prefer [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[62,63],"tags":[],"class_list":["post-1828","post","type-post","status-publish","format-standard","hentry","category-hot-folder","category-hot-folder-admin"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hot Folder Script: Smart-copy duplicates &amp; launch a job - Evolphin Documentation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hot Folder Script: Smart-copy duplicates &amp; launch a job - Evolphin Documentation\" \/>\n<meta property=\"og:description\" content=\"This tutorial walks you through a sample Perl script running on a hot folder on a Linux server. You can apply similar concepts to write scripts that run on a Windows Server. In fact, if you install Cygwin on the Windows Server, you could even run a Perl script directly on Windows, if you prefer [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/\" \/>\n<meta property=\"og:site_name\" content=\"Evolphin Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2014-12-14T23:28:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1878cc6ba.png\" \/>\n<meta name=\"author\" content=\"Rahul Bhargava\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rahul Bhargava\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/\"},\"author\":{\"name\":\"Rahul Bhargava\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/person\\\/e5f3dc53ac5f026ed258e224e75447f7\"},\"headline\":\"Hot Folder Script: Smart-copy duplicates &amp; launch a job\",\"datePublished\":\"2014-12-14T23:28:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/\"},\"wordCount\":542,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/img_548e1878cc6ba.png\",\"articleSection\":[\"Hot Folder\",\"Hot Folder Administration\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/\",\"name\":\"Hot Folder Script: Smart-copy duplicates &amp; launch a job - Evolphin Documentation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/img_548e1878cc6ba.png\",\"datePublished\":\"2014-12-14T23:28:11+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#primaryimage\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/img_548e1878cc6ba.png\",\"contentUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/img_548e1878cc6ba.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/administration-server\\\/hot-folder\\\/hot-folder-script-smart-copy-duplicates-launch-a-job\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hot Folder Script: Smart-copy duplicates &amp; launch a job\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\",\"name\":\"Evolphin Documentation\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/evolphin.com\\\/help\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\",\"name\":\"Evolphin Documentation\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-evolphin-logo-dolphin_sm.png\",\"contentUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-evolphin-logo-dolphin_sm.png\",\"width\":200,\"height\":200,\"caption\":\"Evolphin Documentation\"},\"image\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/person\\\/e5f3dc53ac5f026ed258e224e75447f7\",\"name\":\"Rahul Bhargava\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"caption\":\"Rahul Bhargava\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hot Folder Script: Smart-copy duplicates &amp; launch a job - Evolphin Documentation","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:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/","og_locale":"en_US","og_type":"article","og_title":"Hot Folder Script: Smart-copy duplicates &amp; launch a job - Evolphin Documentation","og_description":"This tutorial walks you through a sample Perl script running on a hot folder on a Linux server. You can apply similar concepts to write scripts that run on a Windows Server. In fact, if you install Cygwin on the Windows Server, you could even run a Perl script directly on Windows, if you prefer [&hellip;]","og_url":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/","og_site_name":"Evolphin Documentation","article_published_time":"2014-12-14T23:28:11+00:00","og_image":[{"url":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1878cc6ba.png","type":"","width":"","height":""}],"author":"Rahul Bhargava","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rahul Bhargava","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#article","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/"},"author":{"name":"Rahul Bhargava","@id":"https:\/\/evolphin.com\/help\/#\/schema\/person\/e5f3dc53ac5f026ed258e224e75447f7"},"headline":"Hot Folder Script: Smart-copy duplicates &amp; launch a job","datePublished":"2014-12-14T23:28:11+00:00","mainEntityOfPage":{"@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/"},"wordCount":542,"commentCount":0,"publisher":{"@id":"https:\/\/evolphin.com\/help\/#organization"},"image":{"@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#primaryimage"},"thumbnailUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1878cc6ba.png","articleSection":["Hot Folder","Hot Folder Administration"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/","url":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/","name":"Hot Folder Script: Smart-copy duplicates &amp; launch a job - Evolphin Documentation","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#primaryimage"},"image":{"@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#primaryimage"},"thumbnailUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1878cc6ba.png","datePublished":"2014-12-14T23:28:11+00:00","breadcrumb":{"@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#primaryimage","url":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1878cc6ba.png","contentUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2014\/12\/img_548e1878cc6ba.png"},{"@type":"BreadcrumbList","@id":"https:\/\/evolphin.com\/help\/administration-server\/hot-folder\/hot-folder-script-smart-copy-duplicates-launch-a-job\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/evolphin.com\/help\/"},{"@type":"ListItem","position":2,"name":"Hot Folder Script: Smart-copy duplicates &amp; launch a job"}]},{"@type":"WebSite","@id":"https:\/\/evolphin.com\/help\/#website","url":"https:\/\/evolphin.com\/help\/","name":"Evolphin Documentation","description":"","publisher":{"@id":"https:\/\/evolphin.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/evolphin.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/evolphin.com\/help\/#organization","name":"Evolphin Documentation","url":"https:\/\/evolphin.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/evolphin.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2020\/04\/cropped-evolphin-logo-dolphin_sm.png","contentUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2020\/04\/cropped-evolphin-logo-dolphin_sm.png","width":200,"height":200,"caption":"Evolphin Documentation"},"image":{"@id":"https:\/\/evolphin.com\/help\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/evolphin.com\/help\/#\/schema\/person\/e5f3dc53ac5f026ed258e224e75447f7","name":"Rahul Bhargava","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","caption":"Rahul Bhargava"}}]}},"_links":{"self":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/1828","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/comments?post=1828"}],"version-history":[{"count":0,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/1828\/revisions"}],"wp:attachment":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/media?parent=1828"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/categories?post=1828"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/tags?post=1828"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}