| Revision 8451,
681 bytes
checked in by uehara, 20 years ago
(diff) |
|
blank
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 4 | * |
|---|
| 5 | * http://www.lockon.co.jp/ |
|---|
| 6 | */ |
|---|
| 7 | require_once("../../require.php"); |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | $dir = USER_PATH; |
|---|
| 11 | |
|---|
| 12 | $objView = new SC_UserView("./templates/"); |
|---|
| 13 | $objQuery = new SC_Query(); |
|---|
| 14 | |
|---|
| 15 | if (is_dir($dir)) { |
|---|
| 16 | if ($dh = opendir($dir)) { |
|---|
| 17 | while (($file = readdir($dh)) !== false) { |
|---|
| 18 | echo "filename: ". $file . " : filetype: " . filetype($dir . $file) . "<br>\n"; |
|---|
| 19 | } |
|---|
| 20 | closedir($dh); |
|---|
| 21 | } |
|---|
| 22 | } |
|---|
| 23 | |
|---|
| 24 | //$objView->assignobj($objPage); |
|---|
| 25 | $objView->display("tree.tpl") |
|---|
| 26 | |
|---|
| 27 | //----------------------------------------------------------------------------------------------------------------------------------- |
|---|
| 28 | |
|---|
| 29 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.