{"id":1593,"date":"2017-12-05T06:49:17","date_gmt":"2017-12-05T06:49:17","guid":{"rendered":"http:\/\/www.scmgalaxy.com\/tutorials\/?p=1593"},"modified":"2025-02-01T22:39:39","modified_gmt":"2025-02-01T22:39:39","slug":"find-files-in-workspace-that-perforce-doesnt-know-about","status":"publish","type":"post","link":"https:\/\/www.devopsschool.com\/blog\/find-files-in-workspace-that-perforce-doesnt-know-about\/","title":{"rendered":"Find files in workspace that perforce doesn&#8217;t know about"},"content":{"rendered":"<p><strong>rajeshkumar created the topic: Find files in workspace that perforce doesn&#8217;t know about<\/strong><br \/>\nQuestions:<br \/>\nFind files in workspace that perforce doesn&#8217;t know about<br \/>\nFind out the p4 files missing on your disk<\/p>\n<p>How to find out what files aren\u2019t added in your Perforce client<br \/>\ndir \/s\/b\/a-d | p4 -x- have > nul: 2>missing.txt &#8211; Windows User<br \/>\nfind . -type f | p4 -x- have > \/dev\/null 2>missing.txt &#8211; Unix User<\/p>\n<p>Finding untracked files in a Perforce tree means to find untracked (really: unadded) files in a Perforce tree?<br \/>\nfind . -type f -print0 | xargs -0 p4 fstat >\/dev\/null 2>mylogfile &#8211; Linux<br \/>\nfind -type f ! -name &#8216;*~&#8217; -print0| xargs -0 p4 fstat 2>&#038;1|awk &#8216;\/no such file\/{print $1}&#8217; &#8211; Unix<br \/>\ndir \/s \/b \/A-D | p4 -x &#8211; add &#8211; Windows<br \/>\nUsing p4v &#8211; Thanks for tenpn from stackoverflow<br \/>\nIn the Jan 2009 version of P4V, you can right-click on any folder in your workspace tree and click &#8220;reconcile offline work&#8230;&#8221;<br \/>\nThis will do a little processing then bring up a split-tree view of files that are not checked out but have differences from the depot version, or not checked in at all.<\/p>\n<p>Find P4 managed files that are missing on your local client<br \/>\np4 diff -sd<\/p>\n<p>Find files that are edited on your local client, but unopened<br \/>\np4 diff -se<\/p>\n<p>Show only the names of opened files that are different from the revision in the depot, or are missing.<br \/>\np4 diff -sa<\/p>\n<p>Show only the names of files opened for integrate that have been resolved, but that have been modified after being resolved.<br \/>\np4 diff -sb<\/p>\n<p>Show only the names of unopened files that are missing from the client workspace, but present in the depot.<br \/>\np4 diff -sd<\/p>\n<p>Show only the names of unopened files in the client workspace that are different than the revision in the depot.<br \/>\np4 diff -se<\/p>\n<p>Show only the names of opened files in the client workspace that are identical to the revision in the depot.<br \/>\np4 diff -sr<br \/>\nRegards,<br \/>\nRajesh Kumar<br \/>\nTwitt me @ <a href=\"http:\/\/twitter.com\/RajeshKumarIn\" target=\"_blank\" rel=\"noopener\">twitter.com\/RajeshKumarIn<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>rajeshkumar created the topic: Find files in workspace that perforce doesn&#8217;t know about Questions: Find files in workspace that perforce doesn&#8217;t know about Find out the p4 files missing on&#8230; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_joinchat":[],"footnotes":""},"categories":[370],"tags":[371],"class_list":["post-1593","post","type-post","status-publish","format-standard","hentry","category-perforce","tag-workspace"],"_links":{"self":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/1593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/comments?post=1593"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/1593\/revisions"}],"predecessor-version":[{"id":1594,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/1593\/revisions\/1594"}],"wp:attachment":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/media?parent=1593"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/categories?post=1593"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/tags?post=1593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}