• Модуль: fileman
  • Путь к файлу: ~/bitrix/modules/fileman/classes/general/snippets.php
  • Класс: CSnippets
  • Вызов: CSnippets::WriteHtaccess
static function WriteHtaccess($path)
{
	$io = CBXVirtualIo::GetInstance();
	if($io->DirectoryExists($path) && !$io->FileExists($path."/.htaccess"))
		$GLOBALS['APPLICATION']->SaveFileContent($path."/.htaccess", "Allow from All");
}