Dev Center
Table of contents

Thanks for Downloading Dynamic Web TWAIN 30-Day Trial!

Your download will start shortly. If your download does not begin, click here to retry.

View all FAQs about Project Deployment and End-user Installation

How can I change the reference path to the Dynamsoft’s resources in my project?

Scenario: For customers who are using Dynamic Web TWAIN, to change the location of the ‘Resources’ folder, or to rename it, please following the steps below:

Steps: In the below example we will assume the original Resources folder is located at ‘../{Project Directory}/Resources’, and you want to change it to ‘../{Project Directory}/Newfolder/ResourcesTest’.

Step 1. Please make sure the structure inside ‘Resources’ folder stay unchanged.

Step 2. Change the relative path in your page where you reference the js files, for example:

<script src="Resources/dynamsoft.webtwain.initiate.js"></script>
// or your own operation js file
<script src="Scripts/DWTSample_BasicScan.js"></script>
<script src="Resources/dynamsoft.webtwain.config.js"></script>

Modify as below:

<script src="Newfolder/ResourcesTest/dynamsoft.webtwain.initiate.js"></script>
// or your own operation js file
<script src="Scripts/DWTSample_BasicScan.js"></script>
<script src="Newfolder/ResourcesTest/dynamsoft.webtwain.config.js"></script>

Step 3. The same change needs to be done in dynamsoft.webtwain.config.js file. Add/uncomment the following line, then change ‘Resources’ (to ‘New folder/ResourcesTest’ as in this case):

Dynamsoft.DWT.ResourcesPath = "Resources";

Modify as below:

Dynamsoft.DWT.ResourcesPath = "Newfolder/ResourcesTest";

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest Version (18.4)
    • Version 18.3
    • Version 18.1
    • Version 18.0
    • Version 17.3
    • Version 17.2.1
    • Version 17.1.1
    • Version 17.0
    • Version 16.2
    • Version 16.1.1
    Change +