X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/filestorage/tests/fixtures
home
/
cbholdings
/
pasukulu
/
lib
/
filestorage
/
tests
/
fixtures
/
π
..
π
empty.zip
(22 B)
π
passwordis1.zip
(232 B)
π
test.tgz
(152 B)
π
test.txt
(4 B)
π
test_7zip_927.zip
(1020 B)
π
test_infozip_3.zip
(1.13 KB)
π
test_moodle.zip
(678 B)
π
test_moodle_22.zip
(678 B)
π
test_osx_1074.zip
(1.07 KB)
π
test_osx_compress.zip
(3.67 KB)
π
test_tc_8.zip
(782 B)
π
test_thumbsdb.zip
(2.72 KB)
π
test_win8_cz.zip
(346 B)
π
test_win8_de.zip
(222 B)
π
test_winrar_421.zip
(1.27 KB)
π
test_winzip_165.zip
(1.19 KB)
π
testimage.jpg
(27.96 KB)
π
testimage.png
(4.13 KB)
π
testimage.svg
(778 B)
π
testimage_basic.svg
(458 B)
π
testimage_error.svg
(765 B)
π
testimage_rotated.jpg
(116.09 KB)
π
testimage_viewbox.svg
(800 B)
π
testimage_width_height.svg
(807 B)
π
zip_create_test_file.php
(1.54 KB)
π
zip_info.php
(9.29 KB)
Editing: zip_create_test_file.php
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * This debug script is used during zip support development. * * @package core_files * @copyright 2012 Petr Skoda * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define('CLI_SCRIPT', true); require(__DIR__.'/../../../../config.php'); require_once($CFG->libdir.'/clilib.php'); $help = "Create sample zip file for testing Example: \$php zip_create_test_file.php test.zip "; if (count($_SERVER['argv']) != 2 or file_exists($_SERVER['argv'][1])) { echo $help; exit(0); } $archive = $_SERVER['argv'][1]; $packer = get_file_packer('application/zip'); $file = __DIR__.'/test.txt'; $files = array( 'test.test' => $file, 'testΓΔek.txt' => $file, 'PrΓΌfung.txt' => $file, 'ζ΅θ―.txt' => $file, '試ι¨.txt' => $file, 'Ε½luΕ₯ouΔkΓ½/KonΓΔek.txt' => $file, ); $packer->archive_to_pathname($files, $archive);
Upload File
Create Folder