<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Как сделать авто поиск директории]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15202&amp;type=atom" />
	<updated>2020-03-06T10:17:51Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15202</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138358#p138358" />
			<content type="html"><![CDATA[<p><strong>becauseim</strong>, загляните в справку <em>Loop, Files</em>.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-03-06T10:17:51Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138358#p138358</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138357#p138357" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, круто! А как сделать то же самое, но для последнего созданного файла?</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2020-03-06T09:34:22Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138357#p138357</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138069#p138069" />
			<content type="html"><![CDATA[<p>Спасибо!</p>]]></content>
			<author>
				<name><![CDATA[Anton.Badonov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40556</uri>
			</author>
			<updated>2020-02-27T13:52:12Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138069#p138069</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138013#p138013" />
			<content type="html"><![CDATA[<p>Попробуйте так:<br /></p><div class="codebox"><pre><code>folderPath := A_MyDocuments . &quot;\My games\GTA San Andress\Save&quot;
startTime := 2000, max := 0
Loop, Files, % folderPath . &quot;\*&quot;, D
{
   timeCreated := A_LoopFileTimeCreated
   timeCreated -= startTime, s
   if (timeCreated &gt; max) {
      max := timeCreated
      lastCreatedFolder := A_LoopFilePath
   }
}
MsgBox, % lastCreatedFolder</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-02-25T13:45:29Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138013#p138013</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138006#p138006" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong><br />Пытался сделать через file select или что то такое , не получилось . <br />я в этой теме туповат если честно</p>]]></content>
			<author>
				<name><![CDATA[Anton.Badonov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40556</uri>
			</author>
			<updated>2020-02-25T05:14:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138006#p138006</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=137978#p137978" />
			<content type="html"><![CDATA[<p>А сами-то хотя бы попытались? В справке примеры есть.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-02-24T17:19:28Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=137978#p137978</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=137977#p137977" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>&nbsp; Могли бы вы привести пример ?<br />Например искать в папке Мои Документы / My games / GTA San Andress /Save/ и в папке save найти самую последнюю созданную ?<br />Называются папки там по дате создания . <br />Вот так 2020.02.24 13.05.31</p>]]></content>
			<author>
				<name><![CDATA[Anton.Badonov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40556</uri>
			</author>
			<updated>2020-02-24T12:49:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=137977#p137977</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=137976#p137976" />
			<content type="html"><![CDATA[<p>Можно, используйте<br /><a href="https://www.autohotkey.com/docs/commands/LoopFile.htm">Loop (files &amp; folders)</a><br /><a href="https://www.autohotkey.com/docs/commands/FileGetTime.htm">FileGetTime</a></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-02-24T11:42:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=137976#p137976</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Как сделать авто поиск директории]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=137971#p137971" />
			<content type="html"><![CDATA[<p>Можно ли сделать шаблон чтоб искать одну и ту же папку в &quot;моих документах&quot; и находить в ней самую последнюю созданную .</p>]]></content>
			<author>
				<name><![CDATA[Anton.Badonov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40556</uri>
			</author>
			<updated>2020-02-24T08:27:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=137971#p137971</id>
		</entry>
</feed>
