//$Id: CDirSrch.idl,v 1.8 2004/01/15 06:26:40 markus Rel $ //PROJECT : General //SUBSYSTEM : CORBA //REFERENCES : //TODO : //BUGS : //REVISION : $Revision: 1.8 $ //AUTHOR : Markus Schwab //CREATED : 7.1.2001 //COPYRIGHT : Copyright (C) 2001 - 2004 // This program 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 2 of the License, or // (at your option) any later version. // This program 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 this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. interface CFile { // Retrieve information string path (); string name (); unsigned long size (); string time (); unsigned long attributes (); // File-type boolean isDirectory (); boolean isExecuteable (); boolean isUserExec (); // Compare short compare (in string name); short compareObject (in CFile other); void exit (); }; interface CDirectorySearch { void setSearchValue (in string file); CFile find (in unsigned long attr); CFile next (); boolean isValid (); string getSearchValue (); string getDirectory (); string getFileSpec (); void exit (); const unsigned long FILE_NORMAL = 1; const unsigned long FILE_READONLY = 2; const unsigned long FILE_DIRECTORY = 4; const unsigned long FILE_HIDDEN = 8; };