Java Path Relative getRelativeLastModifiedTimeFile()

Here you can find the source of getRelativeLastModifiedTimeFile()

Description

get Relative Last Modified Time File

License

Open Source License

Declaration

private static File getRelativeLastModifiedTimeFile() 

Method Source Code


//package com.java2s;
/* //from w ww .  j  a  va 2s  . co m
Copyright 2005-2018, Foundations of Success, Bethesda, Maryland
on behalf of the Conservation Measures Partnership ("CMP").
Material developed between 2005-2013 is jointly copyright by Beneficent Technology, Inc. ("The Benetech Initiative"), Palo Alto, California.
    
This file is part of Miradi
    
Miradi is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3, 
as published by the Free Software Foundation.
    
Miradi 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 Miradi.  If not, see <http://www.gnu.org/licenses/>. 
*/

import java.io.File;

public class Main {
    private static final String LAST_MODIFIED_FILE_NAME = "LastModifiedProjectTime.txt";

    private static File getRelativeLastModifiedTimeFile() {
        return new File(LAST_MODIFIED_FILE_NAME);
    }
}

Related

  1. getRelativeFileName(File file, File basedir)
  2. getRelativeFileName(File target, File realativeTo)
  3. getRelativeFileName(String filePath, String directoryPath)
  4. getRelativeFilePath(File absolutePath, File reference)
  5. getRelativeFilePath(String filePath, String relativePathPrefix)
  6. getRelativeLink(File target, File base)
  7. getRelativeName(File file, File root)
  8. getRelativeName(final File directory, final File file)
  9. getRelativeName(final File file)