Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

ddfg jdhg jkdfgdgdfg 

dfg 

dfg 

dfgWhen requesting an download form DAM of Sitecore media handler, the default file will be the assets title (name).extension. The setting can be found in the file: App_Config\Include\damforsitecore\DFS.Settings.config and look for the parameter setting DFS.MediaPipeline.downloadFilename.mask.

Code Block
languagexml
<setting name="DFS.MediaPipeline.downloadFilename.mask" value="{stampvalue-asset:name}" />

The possible stampvalue tags can be found here DFS 9.2.0 - 3 Render DAM for Sitecore Field Types, section 3.5 and here  DFS 9.2.0 - 4 Accessing metadata through API.

Examples: 

  1. I want the file to contain title and selected quality id.

    Code Block
    languagexml
    <setting name="DFS.MediaPipeline.downloadFilename.mask" value="{stampvalue-asset:name}-{stampvalue-selected:quality}" />

    Output: Penguins-50051.jpg

  2. I want to prefix all download names with the tag DFS.

    Code Block
    languagexml
    <setting name="DFS.MediaPipeline.downloadFilename.mask" value="DFS-{stampvalue-asset:name}" />

    Output: DFS-Penguins.jpg

  3. I want the file to contain the photograph name, in this example is has the metafieldId 50055.

    Code Block
    languagexml
    <setting name="DFS.MediaPipeline.downloadFilename.mask" value="Download-{stampvalue-asset:name}-{stampvalue-asset:50055}" />

    Output: Penguins-John doe.jpg