<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Создание текcтового документа в текущей директории]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=10875</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=10875&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Создание текcтового документа в текущей директории».]]></description>
		<lastBuildDate>Thu, 01 Apr 2021 06:12:55 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=147097#p147097</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Ваш пример с моим кодом не дружит, пишет else без if..., возможно я что-то не понял..</p><p>Я тут немного еще пошаманил, и дополнил свой предыдущий код, что-бы было нагляднее понятно как это работает. Есть 3 файла. Сам скрипт и два шаблона Example.docx, Example.ahk. При создании файла, он просто копируеться и создаеться в той папке, в которой нахожусь.</p><p>Так вот.., при создании файла, через раз срабатывает в проводнике., но в основном создает файл на рабочем столе.<br />Пробовал WinActivate, в проводнике, но это не&nbsp; сработало.<br /></p><div class="codebox"><pre><code>
q::
Gui 2: New, % &quot;+AlwaysOnTop +Owner hwndhGui +E&quot; . WS_EX_NOACTIVATE := 0x08000000
Gui 2: +HwndSystemMenu
Gui 2: Font, s16, Consolas
Gui 2: Add, Button, g1 x0 y0 w330 h40, Create .ahk
Gui 2: Add, Button, g2 x0 y40 w330 h40, Create .docx
Gui 2: Show, w330 h80, Create Menu

1:
ExampleAHK()
Return
2:
ExampleWord()
Return

ExampleAHK() {
OldFile := &quot;Example.ahk&quot;
FileName := &quot;ExampleScript&quot;                           ; шаблон имени нового файла
; NewFileName := FolderPath &quot;\&quot; FileName &quot;.ahk&quot;
   
   WinGetClass, class, A
   if (class ~= &quot;Progman|WorkerW|AutoHotkeyGUI&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until WinExist(&quot;A&quot;) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }
   if (FolderPath = &quot;&quot;)  {
      MsgBox, Активное окно не является окном Проводника
      Return
   }
   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
   
   NewFileName := FolderPath &quot;\&quot; FileName &quot;.ahk&quot;
   
   While FileExist(NewFileName)  {
      RegExMatch(NewFileName, &quot;i).*\\&quot; FileName &quot; \((\d+)\)\.ahk&quot;, number)
      NewFileName := FolderPath &quot;\&quot; FileName &quot; (&quot; . (number1 = &quot;&quot; ? 2 : number1 + 1) . &quot;).ahk&quot;
   }

 ;FileAppend,, % NewFileName        ; Create New File
;#WinActivate, ahk class ExploreWClass|CabinetWClass
FileCopy, %OldFile%, %NewFileName%    ; Copy File to FolderPath
;#WinActivate ;
 ; Run, % NewFileName               ; Run This File
 Return                       ; The End Script  
}

ExampleWord() {
OldFile := &quot;Example.docx&quot;
FileName := &quot;Example&quot;                           ; шаблон имени нового файла
; NewFileName := FolderPath &quot;\&quot; FileName &quot;.ahk&quot;
   
   WinGetClass, class, A
    if (class ~= &quot;Progman|WorkerW|AutoHotkeyGUI&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until WinExist(&quot;A&quot;) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }
   if (FolderPath = &quot;&quot;)  {
      MsgBox, Активное окно не является окном Проводника
      Return
   }
   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
   
   NewFileName := FolderPath &quot;\&quot; FileName &quot;.docx&quot;
   
   While FileExist(NewFileName)  {
      RegExMatch(NewFileName, &quot;i).*\\&quot; FileName &quot; \((\d+)\)\.docx&quot;, number)
      NewFileName := FolderPath &quot;\&quot; FileName &quot; (&quot; . (number1 = &quot;&quot; ? 2 : number1 + 1) . &quot;).docx&quot;
   }

 ;FileAppend,, % NewFileName        ; Create New File
;#WinActivate, ahk class ExploreWClass|CabinetWClass
FileCopy, %OldFile%, %NewFileName%    ; Copy File to FolderPath
;#WinActivate ;
 ; Run, % NewFileName               ; Run This File
 Return 
}
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Oleksandr)]]></author>
			<pubDate>Thu, 01 Apr 2021 06:12:55 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=147097#p147097</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=147092#p147092</link>
			<description><![CDATA[<p>Попробуйте так:<br /></p><div class="codebox"><pre><code>Gui, New, % &quot;+AlwaysOnTop +Owner hwndhGui +E&quot; . WS_EX_NOACTIVATE := 0x08000000
Gui, Font, s16, Consolas
Gui, Add, Button, gExample x0 y0 w330 h40 vAHK, Create .ahk
Gui, Add, Button, gExample x0 y40 w330 h40 vDOC, Create .docx
Return

q:: Gui, %hGui%: Show, NA w330 h80, Create Menu

Example() {
   WinGetClass, class, A
   if (class ~= &quot;Progman|WorkerW&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until WinExist(&quot;A&quot;) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }
   if (FolderPath = &quot;&quot;)  {
      MsgBox, Активное окно не является окном Проводника
      Return
   }
   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
   if (A_GuiControl = &quot;AHK&quot;)
      MsgBox, 4096, Здесь код для создания AHK, Папка:`n%FolderPath%
   else
      MsgBox, 4096, Здесь код для создания документа, Папка:`n%FolderPath%
   Return
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 31 Mar 2021 22:13:54 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=147092#p147092</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=147091#p147091</link>
			<description><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>Так можно:</p></blockquote></div><p> Очень хороший код. Я его немного дополнил, чтобы создать меню, и делать Копию Файла ( Шаблоны ). Но на GUI, Это не работает из-за того, что &quot;Активное окно не является окном Проводника&quot;. Не могли бы вы поправить меня. Заранее благодарю.<br /></p><div class="codebox"><pre><code>q::
Gui 2: +HwndSystemMenu
Gui 2: Font, s16, Consolas
Gui 2: Add, Button, g1 x0 y0 w330 h40, Create .ahk
Gui 2: Add, Button, g2 x0 y40 w330 h40, Create .docx
Gui 2: Show, w330 h80, Create Menu

1:
Example()
Return
2:
Example()
Return

Example() {
OldFile := &quot;Example.ahk&quot;
FileName := &quot;ExampleScript&quot;                           ; шаблон имени нового файла
; NewFileName := FolderPath &quot;\&quot; FileName &quot;.ahk&quot;
   
   WinGetClass, class, A
   if (class ~= &quot;Progman|WorkerW|AutoHotkeyGUI&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until WinExist(&quot;A&quot;) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }
   if (FolderPath = &quot;&quot;)  {
      MsgBox, Активное окно не является окном Проводника
      Return
   }
   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
   
   NewFileName := FolderPath &quot;\&quot; FileName &quot;.ahk&quot;
   
   While FileExist(NewFileName)  {
      RegExMatch(NewFileName, &quot;i).*\\&quot; FileName &quot; \((\d+)\)\.ahk&quot;, number)
      NewFileName := FolderPath &quot;\&quot; FileName &quot; (&quot; . (number1 = &quot;&quot; ? 2 : number1 + 1) . &quot;).ahk&quot;
   }

 ;FileAppend,, % NewFileName        ; Create New File
 FileCopy, %OldFile%, %NewFileName%    ; Copy File to FolderPath
 ; Run, % NewFileName               ; Run This File
 Return                       ; The End Script  
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Oleksandr)]]></author>
			<pubDate>Wed, 31 Mar 2021 21:30:49 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=147091#p147091</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125485#p125485</link>
			<description><![CDATA[<p>А не подскажите, как код 14 поста переделать, чтобы у меня он сразу создавал и открывал файл, а после выполнения скрипт завершал работу сам. Я планирую запускать его по горячей клавише.</p>]]></description>
			<author><![CDATA[null@example.com (vzregit)]]></author>
			<pubDate>Sun, 20 May 2018 16:10:19 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125485#p125485</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=102323#p102323</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Спасибо!!!</p>]]></description>
			<author><![CDATA[null@example.com (tregalka)]]></author>
			<pubDate>Tue, 05 Apr 2016 14:24:03 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=102323#p102323</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=102305#p102305</link>
			<description><![CDATA[<div class="codebox"><pre><code>FileName := &quot;NewText&quot;  ; шаблон имени нового файла
SetTitleMatchMode, Regex
Return

#IfWinActive ahk_class ((Cabinet|Explore)WClass|Clover_WidgetWin_0)
^!vk4E::  ; Ctrl + Alt + N
   WinGetClass, class, A
   if (class ~= &quot;Progman|WorkerW&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until DllCall(&quot;GetAncestor&quot;, Ptr, WinExist(&quot;A&quot;), &quot;UInt&quot;, GA_ROOT := 2, Ptr) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }
   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
	
   NewFileName := FolderPath &quot;\&quot; FileName &quot;.txt&quot;
   
   While FileExist(NewFileName)  {
      RegExMatch(NewFileName, &quot;i).*\\&quot; FileName &quot; \((\d+)\)\.txt&quot;, number)
      NewFileName := FolderPath &quot;\&quot; FileName &quot; (&quot; . (number1 = &quot;&quot; ? 2 : number1 + 1) . &quot;).txt&quot;
   }

   FileAppend,, % NewFileName
   Run, % NewFileName
   Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Tue, 05 Apr 2016 10:39:01 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=102305#p102305</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=100662#p100662</link>
			<description><![CDATA[<p>Оно и не должно работать нигде, кроме обычного проводника, там ведь директива<br /></p><div class="codebox"><pre><code>#IfWinActive ahk_class (Progman|WorkerW|CabinetWClass)</code></pre></div><p>Код рассчитан только на работу с проводником. Уверен, что с программой Clover тоже можно как-то работать, но у меня она не установлена.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 25 Jan 2016 19:01:31 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=100662#p100662</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=100660#p100660</link>
			<description><![CDATA[<p><strong>teadrinker</strong></p><p>Приветствую! <br />Пробовал у себя 2й вариант вашего скрипта, в проводнике работает идеально!<br />Но как быть, если я постоянно работаю в программе Clover, там работать ничего не хочет : (<br />Когда нажимаешь комбинацию клавиш на рабочем столе то тишина.<br />Когда в проводнике (Clover) выходит такое сообщение - Не удается найти указанный файл</p><p><a href="http://vfl.ru/fotos/683baa9311201921.html"><span class="postimg"><img src="http://images.vfl.ru/ii/1453741386/683baa93/11201921_m.png" alt="http://images.vfl.ru/ii/1453741386/683baa93/11201921_m.png" /></span></a></p><p>Смотрел Clover с помощью утилиты ahk (AU3_Spy) процесс (название окна) вроде тот же что и у родного Проводника</p><p><a href="http://vfl.ru/fotos/a9595e4f11201959.html"><span class="postimg"><img src="http://images.vfl.ru/ii/1453741492/a9595e4f/11201959_m.png" alt="http://images.vfl.ru/ii/1453741492/a9595e4f/11201959_m.png" /></span></a></p>]]></description>
			<author><![CDATA[null@example.com (tregalka)]]></author>
			<pubDate>Mon, 25 Jan 2016 17:07:12 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=100660#p100660</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=96558#p96558</link>
			<description><![CDATA[<p>Спасибо, все заработало, сканкоды нужных клавиш нашел и забиндил, тему можно закрывать.</p>]]></description>
			<author><![CDATA[null@example.com (hauk70)]]></author>
			<pubDate>Mon, 17 Aug 2015 20:00:15 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=96558#p96558</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=96557#p96557</link>
			<description><![CDATA[<div class="codebox"><pre><code>FileName := &quot;NewText&quot;  ; шаблон имени нового файла</code></pre></div><p>должно быть до первой горячей клавиши, иначе не выполняется.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 17 Aug 2015 19:47:37 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=96557#p96557</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=96555#p96555</link>
			<description><![CDATA[<p>Код особо не менял<br />файлы создаются с именами &quot;.txt&quot;, &quot;(2).txt&quot;, &quot;(3).txt&quot; и тд<br />Если убрать код на новый идентификатор он будет открывать первый созданный или с таким же именем файл, а не создавать новые. А спросил потому что было интересно.<br /></p><div class="codebox"><pre><code>#SingleInstance force

+SPACE:: 
Winset, Alwaysontop, Toggle, A, 
Return

FileName := &quot;NewText&quot;  ; шаблон имени нового файла

#vk4E::  ; Ctrl + Alt + N
   WinGetClass, class, A
   if (class ~= &quot;Progman|WorkerW&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until WinExist(&quot;A&quot;) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }

   if (FolderPath = &quot;&quot;)  {
      Return
   }

   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
   
   NewFileName := FolderPath &quot;\&quot; FileName &quot;.txt&quot;
   
   While FileExist(NewFileName)  {
      RegExMatch(NewFileName, &quot;i).*\\&quot; FileName &quot; \((\d+)\)\.txt&quot;, number)
      NewFileName := FolderPath &quot;\&quot; FileName &quot; (&quot; . (number1 = &quot;&quot; ? 2 : number1 + 1) . &quot;).txt&quot;
   }

   FileAppend,, % NewFileName
   Run, % NewFileName
   Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (hauk70)]]></author>
			<pubDate>Mon, 17 Aug 2015 19:43:53 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=96555#p96555</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=96553#p96553</link>
			<description><![CDATA[<p>Про мультимедийные клавиши точно не знаю, у меня старая клавиатура. Про первое зы не понял, у меня всё создаётся нормально. Если у вас что-то не так, приведите код, как он выглядит у вас. Про второе зы можете сами попробовать, зачем спрашивать.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 17 Aug 2015 19:17:19 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=96553#p96553</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=96552#p96552</link>
			<description><![CDATA[<p>Второй вариант не сработал, первый взял и настроил хоткеи под свою руку из чего вытекает новый вопрос - можно повесить скрипт на любую код кнопки и вывести этот код?(мультимедийные клавиши клавиатуры)</p><p>ЗЫ файлы создаются с пустым именем (&quot;.txt&quot;), но порядковый идентификатор добавляется.<br />ЗЫЫ Зачем столько возни с присвоением нового идентификатора если текущий занят? разве сама виндане уследит за этим?</p>]]></description>
			<author><![CDATA[null@example.com (hauk70)]]></author>
			<pubDate>Mon, 17 Aug 2015 19:07:39 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=96552#p96552</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=96551#p96551</link>
			<description><![CDATA[<p>А работает?<br />Так можно:<br /></p><div class="codebox"><pre><code>FileName := &quot;NewText&quot;  ; шаблон имени нового файла

^!vk4E::  ; Ctrl + Alt + N
   WinGetClass, class, A
   if (class ~= &quot;Progman|WorkerW&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until WinExist(&quot;A&quot;) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }
   if (FolderPath = &quot;&quot;)  {
      MsgBox, Активное окно не является окном Проводника
      Return
   }
   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
   
   NewFileName := FolderPath &quot;\&quot; FileName &quot;.txt&quot;
   
   While FileExist(NewFileName)  {
      RegExMatch(NewFileName, &quot;i).*\\&quot; FileName &quot; \((\d+)\)\.txt&quot;, number)
      NewFileName := FolderPath &quot;\&quot; FileName &quot; (&quot; . (number1 = &quot;&quot; ? 2 : number1 + 1) . &quot;).txt&quot;
   }

   FileAppend,, % NewFileName
   Run, % NewFileName
   Return</code></pre></div><p>Или, чтобы работало только в окнах Проводника и Рабочего стола:<br /></p><div class="codebox"><pre><code>FileName := &quot;NewText&quot;  ; шаблон имени нового файла
SetTitleMatchMode, Regex
Return

#IfWinActive ahk_class (Progman|WorkerW|CabinetWClass)
^!vk4E::  ; Ctrl + Alt + N
   WinGetClass, class, A
   if (class ~= &quot;Progman|WorkerW&quot;)
      FolderPath := A_Desktop
   else  {
      for item in ComObjCreate(&quot;Shell.Application&quot;).Windows
         continue
      until WinExist(&quot;A&quot;) = item.hwnd || item := &quot;&quot;
      FolderPath := item.Document.Folder.Self.Path
   }
   SplitPath, FolderPath,,,,, Drive
   if InStr(Drive, &quot;::&quot;)  {
      MsgBox, Это служебная папка, в ней нельзя создать файл
      Return
   }
   NewFileName := FolderPath &quot;\&quot; FileName &quot;.txt&quot;
   
   While FileExist(NewFileName)  {
      RegExMatch(NewFileName, &quot;i).*\\&quot; FileName &quot; \((\d+)\)\.txt&quot;, number)
      NewFileName := FolderPath &quot;\&quot; FileName &quot; (&quot; . (number1 = &quot;&quot; ? 2 : number1 + 1) . &quot;).txt&quot;
   }

   FileAppend,, % NewFileName
   Run, % NewFileName
   Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 17 Aug 2015 18:33:02 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=96551#p96551</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Создание текcтового документа в текущей директории]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=96548#p96548</link>
			<description><![CDATA[<p>Создание текстового документа на рабочем столе было бы очень хорошим дополнением и так то вводить имя файла не всегда удобно, поэтому что-то такое корректно?<br /></p><div class="codebox"><pre><code>
   New File (example: foo.txt)   
   FileAppend,, %FolderPath%\foo.txt
   Run, %FolderPath%\foo.txt
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (hauk70)]]></author>
			<pubDate>Mon, 17 Aug 2015 17:48:11 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=96548#p96548</guid>
		</item>
	</channel>
</rss>
