All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.api.file.FileCopyDetails Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.gradle.api.file;

import org.gradle.api.Action;
import org.gradle.api.Describable;
import org.gradle.api.NonExtensible;
import org.gradle.internal.HasInternalProtocol;
import org.gradle.internal.instrumentation.api.annotations.NotToBeMigratedToLazy;

/**
 * 

Provides details about a file or directory about to be copied, and allows some aspects of the destination file to * be modified.

* *

Using this interface, you can change the destination path of the file, filter the content of the file, or exclude * the file from the result entirely.

* *

Access to the source file itself after any filters have been added is not a supported operation. *

* */ @NonExtensible @HasInternalProtocol @NotToBeMigratedToLazy public interface FileCopyDetails extends FileTreeElement, ContentFilterable, Describable { /** * Excludes this file from the copy. */ void exclude(); /** * Sets the destination name of this file. * * @param name The destination name of this file. */ void setName(String name); /** * Sets the destination path of this file. * * @param path The path of this file. */ void setPath(String path); /** * Sets the destination path of this file. * * @param path the new path for this file. */ void setRelativePath(RelativePath path); /** * Sets the Unix permissions of this file. * * @param mode the Unix permissions, e.g. {@code 0644}. * * @deprecated Use {@link #permissions(Action)} instead. This method is scheduled for removal in Gradle 9.0. */ @Deprecated void setMode(int mode); /** * Configuration action for specifying file and directory access permissions. * For details see {@link ConfigurableFilePermissions}. * * @since 8.3 */ void permissions(Action configureAction); /** * Set file and directory access permissions based on an externally * provided permission instance. * For details see {@link ConfigurableFilePermissions}. * * @since 8.3 */ void setPermissions(FilePermissions permissions); /** * The strategy to use if there is already a file at this file's destination. */ void setDuplicatesStrategy(DuplicatesStrategy strategy); /** * The strategy to use if there is already a file at this file's destination. *

* The value can be set with a case-insensitive string of the enum value (e.g. {@code 'exclude'} for {@link DuplicatesStrategy#EXCLUDE}). * * @see DuplicatesStrategy * @return the strategy to use for this file. */ DuplicatesStrategy getDuplicatesStrategy(); /** * Returns the base name of this file at the copy destination. * * @return The destination name. Never returns null. */ @Override String getName(); /** * Returns the path of this file, relative to the root of the copy destination. *

* Always uses '/' as the hierarchy separator, regardless of platform file separator. * Same as calling getRelativePath().getPathString(). * * @return The path, relative to the root of the copy destination. Never returns null. */ @Override String getPath(); /** * Returns the path of this file, relative to the root of the copy destination. * * @return The path, relative to the root of the copy destination. Never returns null. */ @Override RelativePath getRelativePath(); /** * Returns the base name of this file at the copy source. * * @return The source name. Never returns null. */ String getSourceName(); /** * Returns the path of this file, relative to the root of the containing file tree. *

* Always uses '/' as the hierarchy separator, regardless of platform file separator. * Same as calling getRelativeSourcePath().getPathString(). * * @return The path, relative to the root of the containing file tree. Never returns null. */ String getSourcePath(); /** * Returns the path of this file, relative to the root of the containing file tree. * * @return The path, relative to the root of the containing file tree. Never returns null. */ RelativePath getRelativeSourcePath(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy