xref: /aoo4110/main/svl/inc/svl/fstathelper.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _SVTOOLS_FSTATHELPER_HXX
25 #define _SVTOOLS_FSTATHELPER_HXX
26 
27 #include "svl/svldllapi.h"
28 #include <tools/solar.h>
29 
30 class UniString;
31 class Date;
32 class Time;
33 
34 namespace FStatHelper {
35 
36 /** Return the modified time and date stamp for this URL.
37 
38 	@param URL	the asking URL
39 
40 	@param pDate if unequal 0, the function set the date stamp
41 
42 	@param pTime if unequal 0, the function set the time stamp
43 
44 	@return 	it was be able to get the date/time stamp
45 */
46 SVL_DLLPUBLIC sal_Bool GetModifiedDateTimeOfFile( const UniString& rURL,
47 									Date* pDate, Time* pTime );
48 
49 /** Return if under the URL a document exist. This is only a wrapper for the
50 	UCB.IsContent.
51 */
52 SVL_DLLPUBLIC sal_Bool IsDocument( const UniString& rURL );
53 
54 /** Return if under the URL a folder exist. This is only a wrapper for the
55 	UCB.isFolder.
56 */
57 SVL_DLLPUBLIC sal_Bool IsFolder( const UniString& rURL );
58 
59 }
60 
61 #endif
62