<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Open all files in Directory]]></title><description><![CDATA[<pre><code>get-childitem *.txt |foreach-object {
&gt;&gt;     Notepad++.exe $_.name
&gt;&gt; }
</code></pre>
<p dir="auto">Using Powershell, this will not find or recognize Notepad++<br />
How do I make this work?<br />
It is eazy from Explorer, but it sorts wrong for my purpose.<br />
Powershell &amp; Cmd sort as I want.<br />
I could also use CMD if someone could help with that.<br />
Or could I change the sort function in explorer?<br />
All help much appreciated.</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/26555/open-all-files-in-directory</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 05:30:18 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/26555.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 16 Jan 2025 15:17:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Open all files in Directory on Thu, 16 Jan 2025 17:03:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mark-olson" aria-label="Profile: Mark-Olson">@<bdi>Mark-Olson</bdi></a> Thanx, good point.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/99198</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/99198</guid><dc:creator><![CDATA[Robert Or Janet Diebel]]></dc:creator><pubDate>Thu, 16 Jan 2025 17:03:25 GMT</pubDate></item><item><title><![CDATA[Reply to Open all files in Directory on Thu, 16 Jan 2025 16:47:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robert-or-janet-diebel" aria-label="Profile: Robert-Or-Janet-Diebel">@<bdi>Robert-Or-Janet-Diebel</bdi></a></p>
<p dir="auto">Glad you figured it out! By the way, going forward you should probably obfuscate any directory paths that you post online, e.g., replacing the true path to a file with <code>C:\path\to\blah.txt</code></p>
]]></description><link>https://community.notepad-plus-plus.org/post/99197</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/99197</guid><dc:creator><![CDATA[Mark Olson]]></dc:creator><pubDate>Thu, 16 Jan 2025 16:47:16 GMT</pubDate></item><item><title><![CDATA[Reply to Open all files in Directory on Thu, 16 Jan 2025 16:41:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a><br />
What worked for me:</p>
<pre><code>PS E:\documents\Zambia\LuvaleText&gt; get-childitem *.txt |foreach-object {
&gt;&gt;     Start notepad++ $_.name
&gt;&gt; }
PS E:\documents\Zambia\LuvaleText&gt;

Also, I did get the full path into the path variable.
Thanx to all.
Bob

</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/99196</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/99196</guid><dc:creator><![CDATA[Robert Or Janet Diebel]]></dc:creator><pubDate>Thu, 16 Jan 2025 16:41:57 GMT</pubDate></item><item><title><![CDATA[Reply to Open all files in Directory on Thu, 16 Jan 2025 15:55:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robert-or-janet-diebel" aria-label="Profile: Robert-Or-Janet-Diebel">@<bdi>Robert-Or-Janet-Diebel</bdi></a> .</p>
<p dir="auto">Either you need to add the directory where notepad++.exe is to your PATH, or you need to include the full path to notepad++.exe in your powershell command (as <a class="plugin-mentions-user plugin-mentions-a" href="/user/litos81" aria-label="Profile: litos81">@<bdi>litos81</bdi></a> posted just as I was typing)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/99192</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/99192</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 16 Jan 2025 15:55:12 GMT</pubDate></item><item><title><![CDATA[Reply to Open all files in Directory on Thu, 16 Jan 2025 15:54:39 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/robert-or-janet-diebel" aria-label="Profile: Robert-Or-Janet-Diebel">@<bdi>Robert-Or-Janet-Diebel</bdi></a> ,</p>
<p dir="auto">you may add the full path to notepad++:</p>
<pre><code>get-childitem *.txt |foreach-object {
&gt;&gt; &amp; "C:\full\path\to\notepad++.exe" $_.name
&gt;&gt; }
</code></pre>
<p dir="auto">Hope it helps!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/99191</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/99191</guid><dc:creator><![CDATA[litos81]]></dc:creator><pubDate>Thu, 16 Jan 2025 15:54:39 GMT</pubDate></item></channel></rss>