WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (2025)

WoodRiver

Item #145481 Model 145481W

Regular price $ 16 . 99

Sale price $ 16 . 99 Was $16.99

Unit price / per

Skip to product information
  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (1)

  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (2)

  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (3)

  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (4)

  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (5)

  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (6)

  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (7)

  • WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (8)

1 / of 8

WoodRiver

Item #145481 Model 145481W

Regular price $ 16 . 99

Sale price $ 16 . 99 Was $16.99

Unit price / per

The WoodRiver® 4-in-1 Hand Rasp and File is a versatile tool that can be utilized for a variety of projects. This versatile tool can perform the functions of 2 rasps and 2. . . View More Details

In Stock Online

Shipping & Returns

Shipping Info

WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (9)WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (10)WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (11)WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (12)WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (13)WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (14)WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (15)

Items you may need

  • File Card And Brush

    Regular price $ 19 . 99

    Sale price $ 19 . 99 Was $19.99

    Unit price / per

    WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (16)

  • Blade and Bit Cleaner, 8 Ounce Pump Spray

    Regular price $ 12 . 99

    Sale price $ 12 . 99 Was $12.99

    Unit price / per

    WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (17)

Details

The WoodRiver® 4-in-1 Hand Rasp and File is a versatile tool that can be utilized for a variety of projects. This versatile tool can perform the functions of 2 rasps and 2 files in 1-handheld tool. The 4-in-1 Hand Rasp and File is the perfect tool for the homeowner, home craftsman, boat builder, mechanic, or any DIYers.

Features:


  • Medium flat hand rasp, medium flat file, coarse curved hand rasp, and curved coarse file
  • Curved on one side
  • Flat on one side
  • Curved wood rasps for enlarging round surfaces
  • Flat wood rasp for rapid stock removal
  • Curved file for smoothing curved surfaces
  • Flat file for smoothing flat surfaces

Specifications:

  • Tool Length: 8"

What's Included:

  • (1) WoodRiver® 4-in-1 Hand Rasp and File

Notes:

  • Always clean your files and rasp when finished using a file cleaning brush and store in a dry place.

California Residents - Prop 65 Warning

Articles & Blogs

  • How To Build A Spoon Mule with Fred Esker

    We join Fred Esker at his woodshop to capture and enjoy building a Spoon Mule. Fred teaches his hand carved spoon making skill set using a simple spoon mule which...

    How To Build A Spoon Mule with Fred Esker

    We join Fred Esker at his woodshop to capture and enjoy building a Spoon Mule. Fred teaches his hand carved spoon making skill set using a simple spoon mule which...

  • A Home Remodeler's Tool Kit

    You can’t bring your workshop to the jobsite. The next best thing is to bring a useful selection of tools. I’d like to say that I’ve done more woodworking than...

    A Home Remodeler's Tool Kit

    You can’t bring your workshop to the jobsite. The next best thing is to bring a useful selection of tools. I’d like to say that I’ve done more woodworking than...

  • Precision Dovetail Saw Techniques by Rob Cosman

    Working with your hands in creating fine furniture is not a thing of the past. The old adage of“what you put into your work, is what you get out of...

    Precision Dovetail Saw Techniques by Rob Cosman

    Working with your hands in creating fine furniture is not a thing of the past. The old adage of“what you put into your work, is what you get out of...

4-in-1 Hand Rasp and File

Regular price $ 16 . 99

Sale price $ 16 . 99 Was $16.99

Unit price / per

  • Woodworking Hand Tools

Favorite Your Store

Form field Zip or City is required. Please fill out the value.

In-Store Classes

`; // Render the in-store classes link into .my__store-classes-mobile document.querySelector('.my__store-classes-mobile').innerHTML = ` In-Store Classes `; } // Remove empty li in main menu function removeEmptyListItems(ulClass, excludeClass) { document.querySelectorAll(`ul.${ulClass} li:not(.${excludeClass})`).forEach(li => { if (!li.textContent.trim()) li.remove(); }); } removeEmptyListItems('list-menu', 'header__menu-divisor'); function findBestMatch(stores, value) { let bestMatch = null; let maxMatchValue = 0; if (value != ''){ stores.forEach(object => { const matchValue = calculateMatch(object, value); if (matchValue > maxMatchValue) { bestMatch = object; maxMatchValue = matchValue; } }); } else { bestMatch = stores.find(s => s.name === localStorage.getItem('storeSelected')); } return bestMatch; } function calculateMatch(store, value) { const concatenatedString = `${store.zip || ''} ${store.state || ''} ${store.city || ''} ${store.name.slice(13) || ''}`.toLowerCase(); return concatenatedString.includes(value.toLowerCase().trim()) ? 1 : 0; } // Add or get storeSelected to/from localStorage const selectedStore = stores.find(s => s.name === localStorage.getItem('storeSelected')); if(selectedStore) { setStoreOnHeader(selectedStore); displayStoreDetails(selectedStore); } function handleMakeThisMyStore(storeName, details = false) { window.localStorage.setItem("storeSelected", storeName); const store = stores.find(s => s.name === storeName); window.localStorage.setItem("storeSelectedId", store._id); setStoreOnHeader(store); getStoreAvailability(); if(details) displayStoreDetails(store); } const makeThisMyStoreButton = document.querySelector('.make-this-mystore'); makeThisMyStoreButton.addEventListener('click', (e) => { handleMakeThisMyStore(e.target.dataset.storeName); e.target.classList.add('hidden'); const storeSavedStatusText = document.querySelector('#store-details .store-saved-status'); storeSavedStatusText.classList.remove('hidden'); const isStoreLocatorPage = document.querySelector('#storemapper'); if (isStoreLocatorPage) loadMyStore(); }); makeThisMyStoreButton.addEventListener("updateStoreDrawer", (e) => { handleMakeThisMyStore(e.detail, true); }) // Event listener for the search button click const searchButton = document.querySelector('.find__store--btn'); searchButton.addEventListener('click', () => handleSearchButtonClick()); // Event listerner enter key search input const searchField = document.querySelector('#find-stores-form__search'); searchField.addEventListener('keypress', function (e) { if (e.key === 'Enter') { handleSearchButtonClick(); } }); // Event listener for the use my location button click const locationButton = document.querySelector('.drawer__use-location'); const getNearestStore = () => { // Get the user's current coordinates based on IP and filter stores getCurrentCoords() .then(currentCoords => { const nearestStore = findNearestStoreByCoordinates(stores, currentCoords); displayStoreDetails(nearestStore); }) .catch(error => { console.error('An error occurred:', error); }); }; locationButton.addEventListener('click',getNearestStore); //console.log('storesJson', storesJson); function isIE() { const ua = window.navigator.userAgent; const msie = ua.indexOf('MSIE '); const trident = ua.indexOf('Trident/'); return (msie > 0 || trident > 0); } if (!isIE()) return; });

Account

Log in to view orders and your profile

Log In

  • Wishlist
WoodRiver - 4-in-1 Hand Rasp and File | Woodcraft (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Allyn Kozey

Last Updated:

Views: 5960

Rating: 4.2 / 5 (63 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Allyn Kozey

Birthday: 1993-12-21

Address: Suite 454 40343 Larson Union, Port Melia, TX 16164

Phone: +2456904400762

Job: Investor Administrator

Hobby: Sketching, Puzzles, Pet, Mountaineering, Skydiving, Dowsing, Sports

Introduction: My name is Allyn Kozey, I am a outstanding, colorful, adventurous, encouraging, zealous, tender, helpful person who loves writing and wants to share my knowledge and understanding with you.