mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-10 13:39:40 -06:00
FF-2070: File Properties
This commit is contained in:
40
BasicNodes/FileProperties/FilePropertyExists.cs
Normal file
40
BasicNodes/FileProperties/FilePropertyExists.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using FileFlows.Plugin;
|
||||
using FileFlows.Plugin.Attributes;
|
||||
|
||||
namespace FileFlows.BasicNodes.FileProperties;
|
||||
|
||||
/// <summary>
|
||||
/// Flow element that tests if a file property exists
|
||||
/// </summary>
|
||||
public class FilePropertyExists : Node
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override int Inputs => 1;
|
||||
/// <inheritdoc />
|
||||
public override int Outputs => 2;
|
||||
/// <inheritdoc />
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "fas fa-question";
|
||||
/// <inheritdoc />
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/file-property-exists";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the property name
|
||||
/// </summary>
|
||||
[TextVariable(1)]
|
||||
public string Property { get; set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public override int Execute(NodeParameters args)
|
||||
{
|
||||
string property = args.ReplaceVariables(this.Property ?? string.Empty, stripMissing: true);
|
||||
if (string.IsNullOrEmpty(property))
|
||||
return args.Fail("No property set");
|
||||
|
||||
string actualValue = args.GetProperty(property);
|
||||
bool exists = string.IsNullOrWhiteSpace(actualValue) == false;
|
||||
args.Logger?.ILog(exists ? "Property exists" : "Property does not exist");
|
||||
return exists ? 1 : 2;
|
||||
}
|
||||
}
|
||||
54
BasicNodes/FileProperties/FilePropertyMatches.cs
Normal file
54
BasicNodes/FileProperties/FilePropertyMatches.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
using FileFlows.Plugin;
|
||||
using FileFlows.Plugin.Attributes;
|
||||
|
||||
namespace FileFlows.BasicNodes.FileProperties;
|
||||
|
||||
/// <summary>
|
||||
/// Flow element that tests if a file property matches a given string
|
||||
/// </summary>
|
||||
public class FilePropertyMatches : Node
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override int Inputs => 1;
|
||||
/// <inheritdoc />
|
||||
public override int Outputs => 2;
|
||||
/// <inheritdoc />
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "fas fa-equals";
|
||||
/// <inheritdoc />
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/file-property-matches";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the property name
|
||||
/// </summary>
|
||||
[TextVariable(1)]
|
||||
public string Property { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the property value
|
||||
/// </summary>
|
||||
[TextVariable(2)]
|
||||
public string Value { get; set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public override int Execute(NodeParameters args)
|
||||
{
|
||||
string property = args.ReplaceVariables(this.Property ?? string.Empty, stripMissing: true);
|
||||
if (string.IsNullOrEmpty(property))
|
||||
return args.Fail("No property set");
|
||||
|
||||
string matchExpression = args.ReplaceVariables(this.Value ?? string.Empty, stripMissing: true) ?? string.Empty;
|
||||
|
||||
string actualValue = args.GetProperty(property) ?? string.Empty;
|
||||
|
||||
args.Logger?.ILog("Match Expression: " + matchExpression);
|
||||
args.Logger?.ILog("Actual Value: " + actualValue);
|
||||
|
||||
bool matches = args.StringHelper.Matches(matchExpression, actualValue);
|
||||
|
||||
args.Logger?.ILog(matches ? "Value matches" : "Value does not match");
|
||||
|
||||
return matches ? 1 : 2;
|
||||
}
|
||||
}
|
||||
47
BasicNodes/FileProperties/SetFileProperty.cs
Normal file
47
BasicNodes/FileProperties/SetFileProperty.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using FileFlows.Plugin;
|
||||
using FileFlows.Plugin.Attributes;
|
||||
|
||||
namespace FileFlows.BasicNodes.FileProperties;
|
||||
|
||||
/// <summary>
|
||||
/// Flow element that sets a file property
|
||||
/// </summary>
|
||||
public class SetFileProperty : Node
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override int Inputs => 1;
|
||||
/// <inheritdoc />
|
||||
public override int Outputs => 1;
|
||||
/// <inheritdoc />
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "fas fa-file-signature";
|
||||
/// <inheritdoc />
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/set-file-property";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the property name
|
||||
/// </summary>
|
||||
[TextVariable(1)]
|
||||
public string Property { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the property value
|
||||
/// </summary>
|
||||
[TextVariable(2)]
|
||||
public string Value { get; set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public override int Execute(NodeParameters args)
|
||||
{
|
||||
string property = args.ReplaceVariables(this.Property ?? string.Empty, stripMissing: true);
|
||||
if (string.IsNullOrEmpty(property))
|
||||
return args.Fail("No property set");
|
||||
|
||||
string value = args.ReplaceVariables(this.Value ?? string.Empty, stripMissing: true)?.EmptyAsNull();
|
||||
|
||||
args.SetProperty(property, value);
|
||||
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Stimmt nicht überein"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Prüft, ob eine Eigenschaft für diesen Datei-Datensatz gesetzt wurde. Eigenschaften werden im Datenbankeintrag der Datei gespeichert und sind einzigartig für diese spezifische Dateiinstanz, nicht für den Dateinamen. Wenn dieselbe Datei in einer anderen Bibliothek erscheint, hat sie ihre eigenen separaten Eigenschaften.",
|
||||
"Label": "Dateieigenschaft Existiert",
|
||||
"Fields": {
|
||||
"Property": "Eigenschaft",
|
||||
"Property-Help": "Name der Dateieigenschaft, die überprüft werden soll."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Die Eigenschaft existiert für diesen Datei-Datensatz.",
|
||||
"2": "Die Eigenschaft existiert nicht für diesen Datei-Datensatz."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Prüft, ob eine Eigenschaft in diesem Datei-Datensatz einem bestimmten Wert entspricht. Eigenschaften werden im Datenbankeintrag der Datei gespeichert und sind einzigartig für diese spezifische Dateiinstanz, nicht für den Dateinamen. Wenn dieselbe Datei in einer anderen Bibliothek erscheint, hat sie ihre eigenen separaten Eigenschaften.",
|
||||
"Label": "Dateieigenschaft Stimmt Überein",
|
||||
"Fields": {
|
||||
"Property": "Eigenschaft",
|
||||
"Property-Help": "Name der Dateieigenschaft, die überprüft werden soll.",
|
||||
"Value": "Wert",
|
||||
"Value-Help": "Erwarteter Wert der Eigenschaft."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Die Eigenschaft entspricht dem erwarteten Wert.",
|
||||
"2": "Die Eigenschaft entspricht nicht dem erwarteten Wert."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Überprüft, ob die Dateigröße mit den konfigurierten Parametern übereinstimmt. Die Werte sind in Megabyte angegeben.\n\nAusgang 1: Trifft zu\nAusgang 2: Trifft nicht zu",
|
||||
"Label": "Dateigröße",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Miniaturbild gesetzt"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Setzt eine Eigenschaft für diesen Datei-Datensatz. Eigenschaften werden im Datenbankeintrag der Datei gespeichert und sind einzigartig für diese spezifische Dateiinstanz, nicht für den Dateinamen. Wenn dieselbe Datei in einer anderen Bibliothek erscheint, hat sie ihre eigenen separaten Eigenschaften.",
|
||||
"Label": "Dateieigenschaft Setzen",
|
||||
"Fields": {
|
||||
"Property": "Eigenschaft",
|
||||
"Property-Help": "Name der Dateieigenschaft, die gesetzt werden soll.",
|
||||
"Value": "Wert",
|
||||
"Value-Help": "Wert, der der Eigenschaft zugewiesen werden soll."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Die Eigenschaft wurde für diesen Datei-Datensatz gesetzt."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Setzt eine Variable im Flow.",
|
||||
"Label": "Variable setzen",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Does Not Match"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Tests if a property has been set on this file record. Properties are stored in the file's database record and are unique to this specific file instance, not the filename. If the same file appears in a different library, it will have its own separate properties.",
|
||||
"Label": "File Property Exists",
|
||||
"Fields": {
|
||||
"Property": "Property",
|
||||
"Property-Help": "Name of the file record property to check."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "The property exists for this file record.",
|
||||
"2": "The property does not exist for this file record."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Tests if a property on this file record matches a given value. Properties are stored in the file's database record and are unique to this specific file instance, not the filename. If the same file appears in a different library, it will have its own separate properties.",
|
||||
"Label": "File Property Matches",
|
||||
"Fields": {
|
||||
"Property": "Property",
|
||||
"Property-Help": "Name of the file record property to check.",
|
||||
"Value": "Value",
|
||||
"Value-Help": "Expected value of the property."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "The property matches the expected value.",
|
||||
"2": "The property does not match the expected value."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Checks if the file size matches the configured parameters. The values are in megabytes.\n\nOutput 1: Matches\nOutput 2: Does not match",
|
||||
"Label": "File Size",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Thumbnail set"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Sets a property on this file record. Properties are stored in the file's database record and are unique to this specific file instance, not the filename. If the same file appears in a different library, it will have its own separate properties.",
|
||||
"Label": "Set File Property",
|
||||
"Fields": {
|
||||
"Property": "Property",
|
||||
"Property-Help": "Name of the file record property to set.",
|
||||
"Value": "Value",
|
||||
"Value-Help": "Value to assign to the property."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "The property was set on this file record."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Sets a variable in the flow.",
|
||||
"Label": "Set Variable",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "No coincide"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Verifica si una propiedad ha sido establecida en este registro de archivo. Las propiedades se almacenan en el registro de la base de datos del archivo y son únicas para esta instancia específica del archivo, no para el nombre del archivo. Si el mismo archivo aparece en otra biblioteca, tendrá sus propias propiedades independientes.",
|
||||
"Label": "Propiedad del Archivo Existe",
|
||||
"Fields": {
|
||||
"Property": "Propiedad",
|
||||
"Property-Help": "Nombre de la propiedad del archivo a verificar."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La propiedad existe para este registro de archivo.",
|
||||
"2": "La propiedad no existe para este registro de archivo."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Verifica si una propiedad en este registro de archivo coincide con un valor determinado. Las propiedades se almacenan en el registro de la base de datos del archivo y son únicas para esta instancia específica del archivo, no para el nombre del archivo. Si el mismo archivo aparece en otra biblioteca, tendrá sus propias propiedades independientes.",
|
||||
"Label": "Propiedad del Archivo Coincide",
|
||||
"Fields": {
|
||||
"Property": "Propiedad",
|
||||
"Property-Help": "Nombre de la propiedad del archivo a verificar.",
|
||||
"Value": "Valor",
|
||||
"Value-Help": "Valor esperado de la propiedad."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La propiedad coincide con el valor esperado.",
|
||||
"2": "La propiedad no coincide con el valor esperado."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Verifica si el tamaño del archivo coincide con los parámetros configurados. Los valores están en megabytes.\n\nSalida 1: Coincide\nSalida 2: No coincide",
|
||||
"Label": "Tamaño de archivo",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Miniatura establecida"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Establece una propiedad en este registro de archivo. Las propiedades se almacenan en el registro de la base de datos del archivo y son únicas para esta instancia específica del archivo, no para el nombre del archivo. Si el mismo archivo aparece en otra biblioteca, tendrá sus propias propiedades independientes.",
|
||||
"Label": "Establecer Propiedad del Archivo",
|
||||
"Fields": {
|
||||
"Property": "Propiedad",
|
||||
"Property-Help": "Nombre de la propiedad del archivo a establecer.",
|
||||
"Value": "Valor",
|
||||
"Value-Help": "Valor a asignar a la propiedad."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La propiedad fue establecida en este registro de archivo."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Establece una variable en el flujo.",
|
||||
"Label": "Establecer Variable",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Ne correspond pas"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Vérifie si une propriété a été définie sur cet enregistrement de fichier. Les propriétés sont stockées dans l'enregistrement de base de données du fichier et sont uniques à cette instance spécifique du fichier, et non au nom du fichier. Si le même fichier apparaît dans une autre bibliothèque, il aura ses propres propriétés distinctes.",
|
||||
"Label": "Propriété du Fichier Existe",
|
||||
"Fields": {
|
||||
"Property": "Propriété",
|
||||
"Property-Help": "Nom de la propriété du fichier à vérifier."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La propriété existe pour cet enregistrement de fichier.",
|
||||
"2": "La propriété n'existe pas pour cet enregistrement de fichier."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Vérifie si une propriété de cet enregistrement de fichier correspond à une valeur donnée. Les propriétés sont stockées dans l'enregistrement de base de données du fichier et sont uniques à cette instance spécifique du fichier, et non au nom du fichier. Si le même fichier apparaît dans une autre bibliothèque, il aura ses propres propriétés distinctes.",
|
||||
"Label": "Propriété du Fichier Correspond",
|
||||
"Fields": {
|
||||
"Property": "Propriété",
|
||||
"Property-Help": "Nom de la propriété du fichier à vérifier.",
|
||||
"Value": "Valeur",
|
||||
"Value-Help": "Valeur attendue de la propriété."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La propriété correspond à la valeur attendue.",
|
||||
"2": "La propriété ne correspond pas à la valeur attendue."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Vérifie si la taille du fichier correspond aux paramètres configurés. Les valeurs sont en mégaoctets.\n\nSortie 1: Correspond\nSortie 2: Ne correspond pas",
|
||||
"Label": "Taille de fichier",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Miniature définie"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Définit une propriété sur cet enregistrement de fichier. Les propriétés sont stockées dans l'enregistrement de base de données du fichier et sont uniques à cette instance spécifique du fichier, et non au nom du fichier. Si le même fichier apparaît dans une autre bibliothèque, il aura ses propres propriétés distinctes.",
|
||||
"Label": "Définir une Propriété du Fichier",
|
||||
"Fields": {
|
||||
"Property": "Propriété",
|
||||
"Property-Help": "Nom de la propriété du fichier à définir.",
|
||||
"Value": "Valeur",
|
||||
"Value-Help": "Valeur à attribuer à la propriété."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La propriété a été définie sur cet enregistrement de fichier."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Définit une variable dans le flux.",
|
||||
"Label": "Définir une Variable",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Non corrisponde"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Verifica se una proprietà è stata impostata su questo record di file. Le proprietà vengono memorizzate nel record del database del file e sono uniche per questa specifica istanza del file, non per il nome del file. Se lo stesso file appare in un'altra libreria, avrà proprietà separate e indipendenti.",
|
||||
"Label": "Proprietà del File Esiste",
|
||||
"Fields": {
|
||||
"Property": "Proprietà",
|
||||
"Property-Help": "Nome della proprietà del file da verificare."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La proprietà esiste per questo record di file.",
|
||||
"2": "La proprietà non esiste per questo record di file."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Verifica se una proprietà in questo record di file corrisponde a un valore specificato. Le proprietà vengono memorizzate nel record del database del file e sono uniche per questa specifica istanza del file, non per il nome del file. Se lo stesso file appare in un'altra libreria, avrà proprietà separate e indipendenti.",
|
||||
"Label": "Proprietà del File Corrisponde",
|
||||
"Fields": {
|
||||
"Property": "Proprietà",
|
||||
"Property-Help": "Nome della proprietà del file da verificare.",
|
||||
"Value": "Valore",
|
||||
"Value-Help": "Valore atteso della proprietà."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La proprietà corrisponde al valore atteso.",
|
||||
"2": "La proprietà non corrisponde al valore atteso."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Controlla se la dimensione del file corrisponde ai parametri configurati. I valori sono in megabyte.\n\nOutput 1: Corrisponde\nOutput 2: Non corrisponde",
|
||||
"Label": "Dimensione File",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Miniatura impostata"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Imposta una proprietà su questo record di file. Le proprietà vengono memorizzate nel record del database del file e sono uniche per questa specifica istanza del file, non per il nome del file. Se lo stesso file appare in un'altra libreria, avrà proprietà separate e indipendenti.",
|
||||
"Label": "Imposta Proprietà del File",
|
||||
"Fields": {
|
||||
"Property": "Proprietà",
|
||||
"Property-Help": "Nome della proprietà del file da impostare.",
|
||||
"Value": "Valore",
|
||||
"Value-Help": "Valore da assegnare alla proprietà."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "La proprietà è stata impostata su questo record di file."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Imposta una variabile nel flusso.",
|
||||
"Label": "Imposta Variabile",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "一致しない"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "このファイルレコードにプロパティが設定されているかを確認します。プロパティはファイルのデータベースレコードに保存され、この特定のファイルインスタンスに対して固有のものであり、ファイル名に基づくものではありません。同じファイルが別のライブラリに存在する場合、そのファイルには独立したプロパティが設定されます。",
|
||||
"Label": "ファイルプロパティの存在",
|
||||
"Fields": {
|
||||
"Property": "プロパティ",
|
||||
"Property-Help": "確認するファイルプロパティの名前。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "このファイルレコードにプロパティが存在します。",
|
||||
"2": "このファイルレコードにプロパティが存在しません。"
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "このファイルレコードのプロパティが指定された値と一致するかを確認します。プロパティはファイルのデータベースレコードに保存され、この特定のファイルインスタンスに対して固有のものであり、ファイル名に基づくものではありません。同じファイルが別のライブラリに存在する場合、そのファイルには独立したプロパティが設定されます。",
|
||||
"Label": "ファイルプロパティの一致",
|
||||
"Fields": {
|
||||
"Property": "プロパティ",
|
||||
"Property-Help": "確認するファイルプロパティの名前。",
|
||||
"Value": "値",
|
||||
"Value-Help": "期待されるプロパティの値。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "プロパティは期待される値と一致します。",
|
||||
"2": "プロパティは期待される値と一致しません。"
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "ファイルサイズが設定されたパラメータに一致するか確認します。値はメガバイト単位です。\n\n出力 1: 一致\n出力 2: 一致しません",
|
||||
"Label": "ファイルサイズ",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "サムネイルが設定されました"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "このファイルレコードにプロパティを設定します。プロパティはファイルのデータベースレコードに保存され、この特定のファイルインスタンスに対して固有のものであり、ファイル名に基づくものではありません。同じファイルが別のライブラリに存在する場合、そのファイルには独立したプロパティが設定されます。",
|
||||
"Label": "ファイルプロパティの設定",
|
||||
"Fields": {
|
||||
"Property": "プロパティ",
|
||||
"Property-Help": "設定するファイルプロパティの名前。",
|
||||
"Value": "値",
|
||||
"Value-Help": "プロパティに割り当てる値。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "このファイルレコードにプロパティが設定されました。"
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "フロー内で変数を設定します。",
|
||||
"Label": "変数を設定",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "일치하지 않음"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "이 파일 레코드에 속성이 설정되었는지 확인합니다. 속성은 파일의 데이터베이스 레코드에 저장되며, 파일 이름이 아니라 특정 파일 인스턴스에 고유합니다. 동일한 파일이 다른 라이브러리에 존재하는 경우, 해당 파일은 별도의 속성을 가집니다.",
|
||||
"Label": "파일 속성 존재",
|
||||
"Fields": {
|
||||
"Property": "속성",
|
||||
"Property-Help": "확인할 파일 속성의 이름."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "이 파일 레코드에 속성이 존재합니다.",
|
||||
"2": "이 파일 레코드에 속성이 존재하지 않습니다."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "이 파일 레코드의 속성이 지정된 값과 일치하는지 확인합니다. 속성은 파일의 데이터베이스 레코드에 저장되며, 파일 이름이 아니라 특정 파일 인스턴스에 고유합니다. 동일한 파일이 다른 라이브러리에 존재하는 경우, 해당 파일은 별도의 속성을 가집니다.",
|
||||
"Label": "파일 속성 일치",
|
||||
"Fields": {
|
||||
"Property": "속성",
|
||||
"Property-Help": "확인할 파일 속성의 이름.",
|
||||
"Value": "값",
|
||||
"Value-Help": "예상되는 속성 값."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "속성이 예상된 값과 일치합니다.",
|
||||
"2": "속성이 예상된 값과 일치하지 않습니다."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "파일 크기가 구성된 매개변수와 일치하는지 확인합니다. 값은 메가바이트 단위입니다.\n\n출력 1: 일치함\n출력 2: 일치하지 않음",
|
||||
"Label": "파일 크기",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "썸네일 설정됨"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "이 파일 레코드에 속성을 설정합니다. 속성은 파일의 데이터베이스 레코드에 저장되며, 파일 이름이 아니라 특정 파일 인스턴스에 고유합니다. 동일한 파일이 다른 라이브러리에 존재하는 경우, 해당 파일은 별도의 속성을 가집니다.",
|
||||
"Label": "파일 속성 설정",
|
||||
"Fields": {
|
||||
"Property": "속성",
|
||||
"Property-Help": "설정할 파일 속성의 이름.",
|
||||
"Value": "값",
|
||||
"Value-Help": "속성에 할당할 값."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "이 파일 레코드에 속성이 설정되었습니다."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "흐름에서 변수를 설정합니다.",
|
||||
"Label": "변수 설정",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Komt niet overeen"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Controleert of een eigenschap is ingesteld op dit bestandsrecord. Eigenschappen worden opgeslagen in het databasebestand en zijn uniek voor deze specifieke bestandsinstantie, niet voor de bestandsnaam. Als hetzelfde bestand in een andere bibliotheek voorkomt, heeft het zijn eigen afzonderlijke eigenschappen.",
|
||||
"Label": "Bestandseigenschap Bestaat",
|
||||
"Fields": {
|
||||
"Property": "Eigenschap",
|
||||
"Property-Help": "Naam van de bestandseigenschap die moet worden gecontroleerd."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "De eigenschap bestaat voor dit bestandsrecord.",
|
||||
"2": "De eigenschap bestaat niet voor dit bestandsrecord."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Controleert of een eigenschap in dit bestandsrecord overeenkomt met een opgegeven waarde. Eigenschappen worden opgeslagen in het databasebestand en zijn uniek voor deze specifieke bestandsinstantie, niet voor de bestandsnaam. Als hetzelfde bestand in een andere bibliotheek voorkomt, heeft het zijn eigen afzonderlijke eigenschappen.",
|
||||
"Label": "Bestandseigenschap Komt Overeen",
|
||||
"Fields": {
|
||||
"Property": "Eigenschap",
|
||||
"Property-Help": "Naam van de bestandseigenschap die moet worden gecontroleerd.",
|
||||
"Value": "Waarde",
|
||||
"Value-Help": "Verwachte waarde van de eigenschap."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "De eigenschap komt overeen met de verwachte waarde.",
|
||||
"2": "De eigenschap komt niet overeen met de verwachte waarde."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Controleert of de bestandsgrootte overeenkomt met de geconfigureerde parameters. De waarden zijn in megabytes.\n\nOutput 1: Komt overeen\nOutput 2: Komt niet overeen",
|
||||
"Label": "Bestandsgrootte",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Miniatuur ingesteld"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Stelt een eigenschap in voor dit bestandsrecord. Eigenschappen worden opgeslagen in het databasebestand en zijn uniek voor deze specifieke bestandsinstantie, niet voor de bestandsnaam. Als hetzelfde bestand in een andere bibliotheek voorkomt, heeft het zijn eigen afzonderlijke eigenschappen.",
|
||||
"Label": "Bestandseigenschap Instellen",
|
||||
"Fields": {
|
||||
"Property": "Eigenschap",
|
||||
"Property-Help": "Naam van de bestandseigenschap die moet worden ingesteld.",
|
||||
"Value": "Waarde",
|
||||
"Value-Help": "Waarde die aan de eigenschap moet worden toegekend."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "De eigenschap is ingesteld voor dit bestandsrecord."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Stelt een variabele in binnen de stroom.",
|
||||
"Label": "Stel Variabele In",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Não corresponde"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "",
|
||||
"Label": "",
|
||||
"Fields": {
|
||||
"Property": "",
|
||||
"Property-Help": ""
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "",
|
||||
"2": ""
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "",
|
||||
"Label": "",
|
||||
"Fields": {
|
||||
"Property": "",
|
||||
"Property-Help": "",
|
||||
"Value": "",
|
||||
"Value-Help": ""
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "",
|
||||
"2": ""
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Verifica se o tamanho do arquivo corresponde aos parâmetros configurados. Os valores estão em megabytes.\n\nSaída 1: Corresponde\nSaída 2: Não corresponde",
|
||||
"Label": "Tamanho do arquivo",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Miniatura definida"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "",
|
||||
"Label": "",
|
||||
"Fields": {
|
||||
"Property": "",
|
||||
"Property-Help": "",
|
||||
"Value": "",
|
||||
"Value-Help": ""
|
||||
},
|
||||
"Outputs": {
|
||||
"1": ""
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Define uma variável no fluxo.",
|
||||
"Label": "Definir uma Variável",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Не совпадает"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Проверяет, задано ли свойство для этой записи файла. Свойства хранятся в записи базы данных файла и уникальны для данного экземпляра файла, а не для имени файла. Если тот же файл появляется в другой библиотеке, у него будут свои отдельные свойства.",
|
||||
"Label": "Свойство Файла Существует",
|
||||
"Fields": {
|
||||
"Property": "Свойство",
|
||||
"Property-Help": "Название свойства записи файла, которое нужно проверить."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Свойство существует для этой записи файла.",
|
||||
"2": "Свойство не существует для этой записи файла."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Проверяет, соответствует ли свойство в этой записи файла заданному значению. Свойства хранятся в записи базы данных файла и уникальны для данного экземпляра файла, а не для имени файла. Если тот же файл появляется в другой библиотеке, у него будут свои отдельные свойства.",
|
||||
"Label": "Свойство Файла Соответствует",
|
||||
"Fields": {
|
||||
"Property": "Свойство",
|
||||
"Property-Help": "Название свойства записи файла, которое нужно проверить.",
|
||||
"Value": "Значение",
|
||||
"Value-Help": "Ожидаемое значение свойства."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Свойство соответствует ожидаемому значению.",
|
||||
"2": "Свойство не соответствует ожидаемому значению."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Проверяет, соответствует ли размер файла заданным параметрам. Значения указаны в мегабайтах.\n\nВыход 1: Совпадает\nВыход 2: Не совпадает",
|
||||
"Label": "Размер файла",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Миниатюра установлена"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Устанавливает свойство для этой записи файла. Свойства хранятся в записи базы данных файла и уникальны для данного экземпляра файла, а не для имени файла. Если тот же файл появляется в другой библиотеке, у него будут свои отдельные свойства.",
|
||||
"Label": "Установить Свойство Файла",
|
||||
"Fields": {
|
||||
"Property": "Свойство",
|
||||
"Property-Help": "Название свойства записи файла, которое нужно установить.",
|
||||
"Value": "Значение",
|
||||
"Value-Help": "Значение, которое нужно присвоить свойству."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Свойство было установлено для этой записи файла."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Устанавливает переменную в потоке.",
|
||||
"Label": "Установить Переменную",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "Matchar inte"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "Testar om en egenskap har ställts in för denna filpost. Egenskaper lagras i filens databasinformation och är unika för just denna instans av filen, inte för filnamnet. Om samma fil finns i ett annat bibliotek kommer den att ha separata och oberoende egenskaper.",
|
||||
"Label": "Filens Egenskap Finns",
|
||||
"Fields": {
|
||||
"Property": "Egenskap",
|
||||
"Property-Help": "Namn på filpostens egenskap som ska kontrolleras."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Egenskapen finns för denna filpost.",
|
||||
"2": "Egenskapen finns inte för denna filpost."
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "Testar om en egenskap på denna filpost matchar ett angivet värde. Egenskaper lagras i filens databasinformation och är unika för just denna instans av filen, inte för filnamnet. Om samma fil finns i ett annat bibliotek kommer den att ha separata och oberoende egenskaper.",
|
||||
"Label": "Filens Egenskap Matchar",
|
||||
"Fields": {
|
||||
"Property": "Egenskap",
|
||||
"Property-Help": "Namn på filpostens egenskap som ska kontrolleras.",
|
||||
"Value": "Värde",
|
||||
"Value-Help": "Förväntat värde på egenskapen."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Egenskapen matchar det förväntade värdet.",
|
||||
"2": "Egenskapen matchar inte det förväntade värdet."
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "Kontrollerar om filstorleken matchar de konfigurerade parametrarna. Värdena är i megabyte.\n\nOutput 1: Matchar\nOutput 2: Matchar inte",
|
||||
"Label": "Filstorlek",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "Miniatyr inställd"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "Ställer in en egenskap på denna filpost. Egenskaper lagras i filens databasinformation och är unika för just denna instans av filen, inte för filnamnet. Om samma fil finns i ett annat bibliotek kommer den att ha separata och oberoende egenskaper.",
|
||||
"Label": "Ställ in Filens Egenskap",
|
||||
"Fields": {
|
||||
"Property": "Egenskap",
|
||||
"Property-Help": "Namn på filpostens egenskap som ska ställas in.",
|
||||
"Value": "Värde",
|
||||
"Value-Help": "Värde som ska tilldelas egenskapen."
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "Egenskapen har ställts in för denna filpost."
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "Sätter en variabel i flödet.",
|
||||
"Label": "Ställ In Variabel",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "不匹配"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "测试此文件记录是否已设置属性。属性存储在文件的数据库记录中,并且仅适用于此特定文件实例,而不是文件名。如果相同的文件出现在另一个库中,它将具有单独的独立属性。",
|
||||
"Label": "文件属性存在",
|
||||
"Fields": {
|
||||
"Property": "属性",
|
||||
"Property-Help": "要检查的文件记录属性的名称。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "此文件记录具有该属性。",
|
||||
"2": "此文件记录不具有该属性。"
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "测试此文件记录上的属性是否与指定值匹配。属性存储在文件的数据库记录中,并且仅适用于此特定文件实例,而不是文件名。如果相同的文件出现在另一个库中,它将具有单独的独立属性。",
|
||||
"Label": "文件属性匹配",
|
||||
"Fields": {
|
||||
"Property": "属性",
|
||||
"Property-Help": "要检查的文件记录属性的名称。",
|
||||
"Value": "值",
|
||||
"Value-Help": "属性的预期值。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "该属性匹配预期值。",
|
||||
"2": "该属性不匹配预期值。"
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "检查文件大小是否与配置的参数匹配。值以兆字节为单位。\n\n输出 1: 匹配\n输出 2: 不匹配",
|
||||
"Label": "文件大小",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "缩略图已设置"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "在此文件记录上设置属性。属性存储在文件的数据库记录中,并且仅适用于此特定文件实例,而不是文件名。如果相同的文件出现在另一个库中,它将具有单独的独立属性。",
|
||||
"Label": "设置文件属性",
|
||||
"Fields": {
|
||||
"Property": "属性",
|
||||
"Property-Help": "要设置的文件记录属性的名称。",
|
||||
"Value": "值",
|
||||
"Value-Help": "要分配给属性的值。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "该属性已在此文件记录上设置。"
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "在流中设置一个变量。",
|
||||
"Label": "设置变量",
|
||||
|
||||
@@ -185,6 +185,32 @@
|
||||
"2": "不匹配"
|
||||
}
|
||||
},
|
||||
"FilePropertyExists": {
|
||||
"Description": "測試此文件記錄是否已設置屬性。屬性存儲在文件的資料庫記錄中,並且僅適用於此特定文件實例,而不是文件名稱。如果相同的文件出現在另一個庫中,它將具有單獨的獨立屬性。",
|
||||
"Label": "文件屬性存在",
|
||||
"Fields": {
|
||||
"Property": "屬性",
|
||||
"Property-Help": "要檢查的文件記錄屬性的名稱。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "此文件記錄具有該屬性。",
|
||||
"2": "此文件記錄不具有該屬性。"
|
||||
}
|
||||
},
|
||||
"FilePropertyMatches": {
|
||||
"Description": "測試此文件記錄上的屬性是否與指定值匹配。屬性存儲在文件的資料庫記錄中,並且僅適用於此特定文件實例,而不是文件名稱。如果相同的文件出現在另一個庫中,它將具有單獨的獨立屬性。",
|
||||
"Label": "文件屬性匹配",
|
||||
"Fields": {
|
||||
"Property": "屬性",
|
||||
"Property-Help": "要檢查的文件記錄屬性的名稱。",
|
||||
"Value": "值",
|
||||
"Value-Help": "屬性的預期值。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "該屬性匹配預期值。",
|
||||
"2": "該屬性不匹配預期值。"
|
||||
}
|
||||
},
|
||||
"FileSize": {
|
||||
"Description": "檢查檔案大小是否符合配置的參數。數值以兆字節為單位。\n\n輸出 1:匹配\n輸出 2:不匹配",
|
||||
"Label": "檔案大小",
|
||||
@@ -643,6 +669,19 @@
|
||||
"1": "縮略圖已設置"
|
||||
}
|
||||
},
|
||||
"SetFileProperty": {
|
||||
"Description": "在此文件記錄上設置屬性。屬性存儲在文件的資料庫記錄中,並且僅適用於此特定文件實例,而不是文件名稱。如果相同的文件出現在另一個庫中,它將具有單獨的獨立屬性。",
|
||||
"Label": "設置文件屬性",
|
||||
"Fields": {
|
||||
"Property": "屬性",
|
||||
"Property-Help": "要設置的文件記錄屬性的名稱。",
|
||||
"Value": "值",
|
||||
"Value-Help": "要分配給屬性的值。"
|
||||
},
|
||||
"Outputs": {
|
||||
"1": "該屬性已在此文件記錄上設置。"
|
||||
}
|
||||
},
|
||||
"SetVariable": {
|
||||
"Description": "在流程中設置變數。",
|
||||
"Label": "設置變數",
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user